diff --git a/Cargo.toml b/Cargo.toml index ebd18d9..ce197e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,13 +17,13 @@ xxh3 = ["xxhash-rust"] xxhash-rust = { version = "0.8.8", optional = true, default-features = false, features = ["const_xxh3", "xxh3"] } [dev-dependencies] -itertools = { version = "0.12.1" } +itertools = { version = "0.14.0" } num-traits = { version = "0.2.18" } ordered-float = { version = "4.2.0" } proptest = { version = "1.4.0" } -proptest-derive = { version = "0.4.0" } -rand = { version = "0.8.5", features = ["std_rng"] } -statrs = { version = "0.16.0" } +proptest-derive = { version = "0.8.0" } +rand = { version = "0.10.0", features = ["std_rng"] } +statrs = { version = "0.18.0" } test-case = { version = "3.3.1" } [workspace] diff --git a/benchmarks/Cargo.toml b/benchmarks/Cargo.toml index 97b19da..a315b06 100644 --- a/benchmarks/Cargo.toml +++ b/benchmarks/Cargo.toml @@ -8,17 +8,17 @@ authors = ["Charles Masson "] fliphash = { version = "0.1.0", path = "..", features = ["xxh3"] } clap = { version = "4.5.0", features = ["derive"] } -itertools = { version = "0.12.1" } -plotly = { version = "0.8.4", features = ["kaleido"] } -rand = { version = "0.8.5", features = ["std_rng"] } +itertools = { version = "0.14.0" } +plotly = { version = "0.14.0", features = ["kaleido"] } +rand = { version = "0.10.0", features = ["std_rng"] } serde = { version = "1.0.196" } serde_derive = { version = "1.0.196" } serde_json = { version = "1.0.113" } -statrs = { version = "0.16.0" } +statrs = { version = "0.18.0" } xxhash-rust = { version = "0.8.8", default-features = false, features = ["const_xxh3", "xxh3"] } [dev-dependencies] -criterion = { version = "0.5.1", features = ["html_reports"] } +criterion = { version = "0.8.0", features = ["html_reports"] } proptest = { version = "1.4.0" } [[bench]]