Skip to content

Commit

Permalink
chore: satisfy clippy, update half
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Zak <[email protected]>
  • Loading branch information
rjzak committed Feb 26, 2024
1 parent e305f1c commit 5fe7d4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ciborium-ll/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ is-it-maintained-open-issues = { repository = "enarx/ciborium" }

[dependencies]
ciborium-io = { path = "../ciborium-io", version = "0.2.2" }
half = { version = "2.3.1", default-features = false}
half = { version = "2.4.0", default-features = false}

[dev-dependencies]
hex = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion ciborium/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ serde = { version = "1.0.170", default-features = false, features = ["alloc", "d

[dev-dependencies]
serde_bytes = "0.11"
rstest = "0.17"
rstest = "0.18.2"
rand = "0.8"
hex = "0.4"

Expand Down
2 changes: 1 addition & 1 deletion ciborium/src/value/de.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use super::{Error, Integer, Value};

use alloc::{boxed::Box, string::String, vec::Vec};

Check warning on line 5 in ciborium/src/value/de.rs

View workflow job for this annotation

GitHub Actions / test nightly debug ciborium std

the item `Box` is imported redundantly

Check warning on line 5 in ciborium/src/value/de.rs

View workflow job for this annotation

GitHub Actions / test nightly debug ciborium std

the item `String` is imported redundantly

Check warning on line 5 in ciborium/src/value/de.rs

View workflow job for this annotation

GitHub Actions / test nightly release ciborium std

the item `Box` is imported redundantly

Check warning on line 5 in ciborium/src/value/de.rs

View workflow job for this annotation

GitHub Actions / test nightly release ciborium std

the item `String` is imported redundantly
use core::{iter::Peekable, mem::size_of};
use core::iter::Peekable;

use ciborium_ll::tag;
use serde::de::{self, Deserializer as _};
Expand Down

0 comments on commit 5fe7d4c

Please sign in to comment.