Skip to content

Commit

Permalink
bump pinned clippy version
Browse files Browse the repository at this point in the history
  • Loading branch information
danieleades committed Sep 20, 2024
1 parent fbd2239 commit 5f2ecbe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@master
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2023-10-21
toolchain: nightly-2024-09-10
components: clippy
- uses: actions-rs-plus/clippy-check@v2
with:
Expand Down
4 changes: 3 additions & 1 deletion mavlink-core/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ pub fn remove_trailing_zeroes(data: &[u8]) -> usize {
}

/// A trait very similar to `Default` but is only implemented for the equivalent Rust types to
/// `MavType`s. This is only needed because rust doesn't currently implement `Default` for arrays
/// `MavType`s.
///
/// This is only needed because rust doesn't currently implement `Default` for arrays
/// of all sizes. In particular this trait is only ever used when the "serde" feature is enabled.
/// For more information, check out [this issue](https://users.rust-lang.org/t/issue-for-derives-for-arrays-greater-than-size-32/59055/3).
pub trait RustDefault: Copy {
Expand Down

0 comments on commit 5f2ecbe

Please sign in to comment.