diff --git a/Cargo.lock b/Cargo.lock index 6d67cfe..120edae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -172,9 +172,9 @@ checksum = "0570650661aa447e7335f1d5e4f499d8e58796e617bedc9267d971e51c8b49d4" [[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", @@ -195,12 +195,12 @@ dependencies = [ [[package]] name = "criterion-plot" -version = "0.5.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1" +checksum = "9b1bcc0dc7dfae599d84ad0b1a55f80cde8af3725da8313b528da95ef783e338" dependencies = [ "cast", - "itertools 0.10.5", + "itertools 0.13.0", ] [[package]] diff --git a/graph-api-benches/Cargo.toml b/graph-api-benches/Cargo.toml index a0f4363..c8394d1 100644 --- a/graph-api-benches/Cargo.toml +++ b/graph-api-benches/Cargo.toml @@ -31,12 +31,12 @@ bench = false graph-api-lib = { version = "0.2.1", path = "../graph-api-lib" } graph-api-derive = { version = "0.1.4", path = "../graph-api-derive" } uuid = { version = "1.11.0", features = ["v4"] } -criterion = { version = "0.6", features = ["html_reports"] } +criterion = { version = "0.7", features = ["html_reports"] } rand = { version = "0.9" } graph-api-test = { version = "0.2.1", path = "../graph-api-test" } [dev-dependencies] -criterion = { version = "0.6", features = ["html_reports"] } +criterion = { version = "0.7", features = ["html_reports"] } rand = "0.9" [[bench]] diff --git a/graph-api-petgraph/Cargo.toml b/graph-api-petgraph/Cargo.toml index 7137024..057f112 100644 --- a/graph-api-petgraph/Cargo.toml +++ b/graph-api-petgraph/Cargo.toml @@ -21,7 +21,7 @@ petgraph = { workspace = true } [dev-dependencies] graph-api-test = { path = "../graph-api-test", features = ["graph-clear"] } graph-api-benches = { path = "../graph-api-benches", features = ["graph-clear"] } -criterion = { version = "0.6", features = ["html_reports"] } +criterion = { version = "0.7", features = ["html_reports"] } rand = "0.9" [[bench]] diff --git a/graph-api-simplegraph/Cargo.toml b/graph-api-simplegraph/Cargo.toml index 8de3b67..857763c 100644 --- a/graph-api-simplegraph/Cargo.toml +++ b/graph-api-simplegraph/Cargo.toml @@ -26,7 +26,7 @@ uuid = { version = "1.11.0", features = ["v4"] } [dev-dependencies] graph-api-test = { path = "../graph-api-test", features = ["vertex-hash-index", "vertex-label-index", "vertex-full-text-index", "vertex-range-index", "edge-label-index"] } graph-api-benches = { path = "../graph-api-benches", features = ["vertex-hash-index", "vertex-label-index", "vertex-full-text-index", "vertex-range-index", "edge-label-index"] } -criterion = { version = "0.6", features = ["html_reports"] } +criterion = { version = "0.7", features = ["html_reports"] } rand = "0.9" [[bench]]