diff options
author | HampusM <hampus@hampusmat.com> | 2025-01-02 15:55:37 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2025-01-02 15:55:37 +0100 |
commit | 1f6685aa570eadc70342bd1c62f5f9ff451afcb2 (patch) | |
tree | 2c48d4091b707782df4144118f5d4114fbbc8fd4 /ecs/Cargo.toml | |
parent | 0d0ec4870749771f86d18d5d4bbd09c914461651 (diff) |
chore(ecs): only use criterion feature cargo_bench_support
Diffstat (limited to 'ecs/Cargo.toml')
-rw-r--r-- | ecs/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ecs/Cargo.toml b/ecs/Cargo.toml index 697db85..5e1abac 100644 --- a/ecs/Cargo.toml +++ b/ecs/Cargo.toml @@ -16,8 +16,10 @@ hashbrown = "0.15.2" ecs-macros = { path = "../ecs-macros" } util-macros = { path = "../util-macros" } -[dev-dependencies] -criterion = "0.5.1" +[dev-dependencies.criterion] +version = "0.5.1" +default-features = false +features = ["cargo_bench_support"] [[bench]] name = "query" |