Skip to content

Commit 8181f3f

Browse files
Drop use of deprecated form "default_features"
This commit fixes the following "warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition (in the `quickcheck` dependency)". It's quite off-topic but I don't wish to make another PR to change a single character.
1 parent c9d0aef commit 8181f3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ rand = "0.7"
3030
criterion = { version = "0.4.0", features = ["html_reports"] }
3131
paste = "1.0.0" # Used in test_std to instantiate generic tests
3232
permutohedron = "0.2"
33-
quickcheck = { version = "0.9", default_features = false }
33+
quickcheck = { version = "0.9", default-features = false }
3434

3535
[features]
3636
default = ["use_std"]

0 commit comments

Comments
 (0)