diff --git a/Cargo.lock b/Cargo.lock index c82ec74..40e061e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -196,9 +196,9 @@ checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" [[package]] name = "rayon" -version = "1.9.0" +version = "1.10.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e4963ed1bc86e4f3ee217022bd855b297cef07fb9eac5dfa1f788b220b49b3bd" +checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa" dependencies = [ "either", "rayon-core", diff --git a/ndstruct-fuzz/Cargo.toml b/ndstruct-fuzz/Cargo.toml index 0474c2e..99c15cc 100644 --- a/ndstruct-fuzz/Cargo.toml +++ b/ndstruct-fuzz/Cargo.toml @@ -23,7 +23,7 @@ arbitrary = { default-features = false, features = ["derive"], version = "1.3" } libfuzzer-sys = { default-features = false, version = "0.4" } ndstruct = { default-features = false, features = ["alloc", "rand", "rayon"], path = "../ndstruct" } rand = { default-features = false, version = "0.8" } -rayon = { default-features = false, version = "1.9" } +rayon = { default-features = false, version = "1.10" } [package] authors = ["Automatically generated"] diff --git a/ndstruct/Cargo.toml b/ndstruct/Cargo.toml index e85e923..56b0dda 100644 --- a/ndstruct/Cargo.toml +++ b/ndstruct/Cargo.toml @@ -1,7 +1,7 @@ [dependencies] cl-aux = { default-features = false, features = ["serde"], path = "../cl-aux", version = "4.0" } rand = { default-features = false, optional = true, version = "0.8" } -rayon = { default-features = false, optional = true, version = "1.9" } +rayon = { default-features = false, optional = true, version = "1.10" } serde = { default-features = false, features = ["derive"], optional = true, version = "1.0" } [features]