Skip to content

Commit

Permalink
Use dep: syntax to avoid implicit features. (#1099)
Browse files Browse the repository at this point in the history
The only real externally visible feature should be `parallel` and
not the implicit features for the optional dependencies.
  • Loading branch information
waywardmonkeys authored Jun 21, 2024
1 parent 98adccc commit 7ff340c
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 @@ -29,7 +29,7 @@ once_cell = { version = "1.19", optional = true }
libc = { version = "0.2.62", default-features = false, optional = true }

[features]
parallel = ["libc", "jobserver", "once_cell"]
parallel = ["dep:libc", "dep:jobserver", "dep:once_cell"]

[dev-dependencies]
tempfile = "3"
Expand Down

0 comments on commit 7ff340c

Please sign in to comment.