forked from mirrors/jj
cargo: don't expose the criterion
feature
There should be no reason to include `criterion` without the `bench` feature. Adding the `dep:` prefix to any dependency makes cargo not expose the implicit `criterion` feature.
This commit is contained in:
parent
0946934ca6
commit
8640eacfbd
1 changed files with 1 additions and 1 deletions
|
@ -75,7 +75,7 @@ testutils = { workspace = true }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = []
|
default = []
|
||||||
bench = ["criterion"]
|
bench = ["dep:criterion"]
|
||||||
packaging = ["watchman"]
|
packaging = ["watchman"]
|
||||||
vendored-openssl = ["git2/vendored-openssl", "jj-lib/vendored-openssl"]
|
vendored-openssl = ["git2/vendored-openssl", "jj-lib/vendored-openssl"]
|
||||||
watchman = ["jj-lib/watchman"]
|
watchman = ["jj-lib/watchman"]
|
||||||
|
|
Loading…
Reference in a new issue