Skip to content

Commit

Permalink
Cargo.toml: Explicitly mark bitflags as a feature-dependency
Browse files Browse the repository at this point in the history
Rust edition 2024 will disallow implicit feature-dependencies.
  • Loading branch information
crumblingstatue committed Jun 6, 2024
1 parent 0b35d1e commit d1ae57f
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 @@ -13,7 +13,7 @@ rust-version = "1.70"

[features]
default = ["graphics", "audio"]
window = ["bitflags"]
window = ["dep:bitflags"]
graphics = ["window"]
audio = []
serde = ["dep:serde"]
Expand Down

0 comments on commit d1ae57f

Please sign in to comment.