Skip to content

Commit 3d4b856

Browse files
committed
Cargo.toml: default_features to default-features
``` warning: framework-system/framework_lib/Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition ``` Signed-off-by: Daniel Schaefer <dhs@frame.work>
1 parent 40950b4 commit 3d4b856

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

framework_lib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ built = { version = "0.5", features = ["chrono", "git2"] }
4242

4343
[dependencies]
4444
lazy_static = "1.4.0"
45-
sha2 = { version = "0.10.6", default_features = false, features = [ "force-soft" ] }
45+
sha2 = { version = "0.10.6", default-features = false, features = [ "force-soft" ] }
4646
regex = { version = "1.10.0", default-features = false }
47-
redox_hwio = { git = "https://github.com/FrameworkComputer/rust-hwio", branch = "freebsd", default_features = false }
47+
redox_hwio = { git = "https://github.com/FrameworkComputer/rust-hwio", branch = "freebsd", default-features = false }
4848
libc = { version = "0.2.155", optional = true }
4949
clap = { version = "4.0", features = ["derive"], optional = true }
5050
clap-verbosity-flag = { version = "2.0.1", optional = true }

0 commit comments

Comments
 (0)