Skip to content

Commit

Permalink
cargo: Upgrade num-derive to v0.4
Browse files Browse the repository at this point in the history
The num-derive crate version 0.3 is no longer compatible with the
current nightly Rust toolchain. Upgrading to version 0.4 to
ensure compatibility and allow successful builds.

Signed-off-by: Erdem Meydanli <[email protected]>
  • Loading branch information
meerd committed Apr 9, 2024
1 parent d3d77e0 commit bf0cc30
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 5 deletions.
17 changes: 14 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ bindgen = { version=">=0.54" }

[dev-dependencies]
log = "0.4"
num-derive = "0.3"
num-derive = "0.4"
num-traits = "0.2"
tempfile = "3.5"

Expand Down
2 changes: 1 addition & 1 deletion samples/command_executer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ serde = { version = ">=1.0", features = ["derive"] }
serde_json = "1.0"
byteorder = "1.3"
num = "0.2"
num-derive = "0.3"
num-derive = "0.4"
num-traits = "0.2"

0 comments on commit bf0cc30

Please sign in to comment.