diff --git a/eden/fs/benchmarks/Cargo.toml b/eden/fs/benchmarks/Cargo.toml index 029fc3bda82a3..4420735b5a1b8 100644 --- a/eden/fs/benchmarks/Cargo.toml +++ b/eden/fs/benchmarks/Cargo.toml @@ -12,7 +12,7 @@ name = "benchmarks" path = "benchmarks.rs" [dependencies] -criterion = "0.5.1" +criterion = { version = "0.5.1", features = ["csv_output"] } rand = { version = "0.8", features = ["small_rng"] } [target.'cfg(target_os = "linux")'.dependencies] diff --git a/eden/mononoke/benchmarks/storage_config/Cargo.toml b/eden/mononoke/benchmarks/storage_config/Cargo.toml index 056dc35be3216..1cbc1f4726be2 100644 --- a/eden/mononoke/benchmarks/storage_config/Cargo.toml +++ b/eden/mononoke/benchmarks/storage_config/Cargo.toml @@ -18,7 +18,7 @@ blobstore_factory = { version = "0.1.0", path = "../../blobstore/factory" } cacheblob = { version = "0.1.0", path = "../../blobstore/cacheblob" } clap = { version = "4.5.20", features = ["derive", "env", "string", "unicode", "wrap_help"] } context = { version = "0.1.0", path = "../../server/context" } -criterion = "0.5.1" +criterion = { version = "0.5.1", features = ["csv_output"] } environment = { version = "0.1.0", path = "../../cmdlib/environment" } fbinit = { version = "0.2.0", git = "https://github.com/facebookexperimental/rust-shed.git", branch = "main" } futures = { version = "0.3.30", features = ["async-await", "compat"] }