Skip to content

Commit

Permalink
Fix use of deprecated default_features in Cargo.toml
Browse files Browse the repository at this point in the history
    warning: Cargo.toml: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
    (in the `quote` dependency)
  • Loading branch information
dtolnay committed May 7, 2024
1 parent a720819 commit 2ebe711
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Expand Up @@ -25,7 +25,7 @@ unicode-ident = "1.0"

[dev-dependencies]
flate2 = "1.0"
quote = { version = "1.0", default_features = false }
quote = { version = "1.0", default-features = false }
rayon = "1.0"
rustversion = "1"
tar = "0.4"
Expand Down

0 comments on commit 2ebe711

Please sign in to comment.