Skip to content

Commit

Permalink
Use default-features, not deprecated default_features
Browse files Browse the repository at this point in the history
This will stop working in 2024 edition.
  • Loading branch information
waywardmonkeys committed Jul 10, 2024
1 parent 58f7ca4 commit 57c654c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ regex = { version = "1.5", default-features = false, features = ["std"]
# Optional dependencies
rayon = { version = "1.3", optional = true }
csv = { version = "1.1", optional = true }
futures = { version = "0.3", default_features = false, optional = true }
futures = { version = "0.3", default-features = false, optional = true }
smol = { version = "1.2", default-features = false, optional = true }
tokio = { version = "1.0", default-features = false, features = [
"rt",
Expand All @@ -57,7 +57,7 @@ tempfile = "3.5.0"
approx = "0.5.0"
quickcheck = { version = "1.0", default-features = false }
rand = "0.8"
futures = { version = "0.3", default_features = false, features = ["executor"] }
futures = { version = "0.3", default-features = false, features = ["executor"] }

[badges]
maintenance = { status = "passively-maintained" }
Expand Down

0 comments on commit 57c654c

Please sign in to comment.