diff --git a/Cargo.lock b/Cargo.lock index ebf81521a..ff72f1418 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -716,7 +716,7 @@ dependencies = [ "ciborium", "clap", "codspeed", - "criterion-plot", + "criterion-plot 0.5.0", "is-terminal", "itertools 0.10.5", "num-traits", @@ -843,15 +843,15 @@ dependencies = [ [[package]] name = "criterion" -version = "0.6.0" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3bf7af66b0989381bd0be551bd7cc91912a655a58c6918420c9527b1fd8b4679" +checksum = "e1c047a62b0cc3e145fa84415a3191f628e980b194c2755aa12300a4e6cbd928" dependencies = [ "anes", "cast", "ciborium", "clap", - "criterion-plot", + "criterion-plot 0.6.0", "itertools 0.13.0", "num-traits", "oorandom", @@ -873,6 +873,16 @@ dependencies = [ "itertools 0.10.5", ] +[[package]] +name = "criterion-plot" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338" +dependencies = [ + "cast", + "itertools 0.13.0", +] + [[package]] name = "crossbeam-deque" version = "0.8.6" diff --git a/crates/uv-bench/Cargo.toml b/crates/uv-bench/Cargo.toml index 8c08d4dd2..e2664bf9c 100644 --- a/crates/uv-bench/Cargo.toml +++ b/crates/uv-bench/Cargo.toml @@ -43,7 +43,7 @@ uv-workspace = { workspace = true } anyhow = { workspace = true } codspeed-criterion-compat = { version = "3.0.2", default-features = false, optional = true } -criterion = { version = "0.6.0", default-features = false, features = [ +criterion = { version = "0.7.0", default-features = false, features = [ "async_tokio", ] } jiff = { workspace = true }