Skip to content

Commit

Permalink
Fix default_features deprecation warning (#229)
Browse files Browse the repository at this point in the history
Fixes the following warning:

    warning: `default_features` is deprecated in favor of `default-features` and will not work in the 2024 edition
  • Loading branch information
rnestler authored Dec 2, 2024
1 parent a2d2e0e commit a007ce6
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 @@ -21,7 +21,7 @@ hyper = { version = "1.5.1", features = ["full"] }
hyper-util = { version = "0.1.10", features = ["full"] }
http-body-util = "0.1.2"
hyper-tls = "0.6.0"
clap = { version = "4.5.21", features = ["help", "usage", "error-context", "std", "derive"], default_features = false }
clap = { version = "4.5.21", features = ["help", "usage", "error-context", "std", "derive"], default-features = false }
termcolor = "1.3.0"
is-terminal = "0.4.10"
serde = { version = "1.0.215", features = ["derive"] }
Expand Down

0 comments on commit a007ce6

Please sign in to comment.