Skip to content

Commit

Permalink
build(Cargo.toml): repair 2024 edition warning about default-features
Browse files Browse the repository at this point in the history
The old "default_features" spelling is incorrect/deprecated.
  • Loading branch information
jpgrayson committed Aug 17, 2024
1 parent e4459e2 commit d43ee09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ flate2 = "1"
gix = { version = "0.64", default-features = false, features = ["command", "revision"] }
indexmap = "2.1"
is-terminal = "0.4"
nom = { version = "7", default_features = false, features = ["std"] }
nom = { version = "7", default-features = false, features = ["std"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
strsim = "0.11"
Expand Down

0 comments on commit d43ee09

Please sign in to comment.