Skip to content

Commit

Permalink
Use default-features in favor of default_features
Browse files Browse the repository at this point in the history
The _ variants of several Cargo fields will be deprecated in the 2024
edition.  Switch to the recommended - variants.

rust-lang/cargo#13783
  • Loading branch information
dburgener committed May 2, 2024
1 parent 8305cc3 commit 0a88421
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 @@ -10,7 +10,7 @@ readme = "README.md"
keywords = [ "selinux" ]

[build-dependencies]
lalrpop = { version="0.20", default_features=false, features = ["lexer"] }
lalrpop = { version="0.20", default-features=false, features = ["lexer"] }
clap = { version = "4", features = ["derive"] }
clap_mangen = "0.2"

Expand All @@ -23,7 +23,7 @@ clap = { version = "4", features = ["derive"] }
codespan-reporting = "0.11"
flate2 = "1"
is-terminal = "0.4"
lalrpop-util = { version="0.20", default_features=false, features = ["lexer"] }
lalrpop-util = { version="0.20", default-features=false, features = ["lexer"] }
quick-xml = "0.31"
sexp = "1.1"
tar = "0.4"
Expand Down

0 comments on commit 0a88421

Please sign in to comment.