diff --git a/Cargo.toml b/Cargo.toml index 6b9de8db33..429a595b44 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,13 +3,13 @@ members = ["field", "maybe_rayon", "plonky2", "starky", "util"] resolver = "2" [workspace.dependencies] -ahash = { version = "0.8.7", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`. -anyhow = { version = "1.0.40", default-features = false } +ahash = { version = "0.8.9", default-features = false, features = ["compile-time-rng"] } # NOTE: Be sure to keep this version the same as the dependency in `hashbrown`. +anyhow = { version = "1.0.80", default-features = false } hashbrown = { version = "0.14.3", default-features = false, features = ["ahash", "serde"] } # NOTE: When upgrading, see `ahash` dependency. -itertools = { version = "0.11.0", default-features = false } -log = { version = "0.4.14", default-features = false } +itertools = { version = "0.12.1", default-features = false } +log = { version = "0.4.20", default-features = false } num = { version = "0.4", default-features = false, features = ["rand"] } -rand = { version = "0.8.4", default-features = false } +rand = { version = "0.8.5", default-features = false } serde = { version = "1.0", default-features = false, features = ["derive"] } static_assertions = { version = "1.1.0", default-features = false } unroll = { version = "0.1.5", default-features = false } diff --git a/maybe_rayon/Cargo.toml b/maybe_rayon/Cargo.toml index ec1987ed4b..9d07bb3679 100644 --- a/maybe_rayon/Cargo.toml +++ b/maybe_rayon/Cargo.toml @@ -13,7 +13,7 @@ categories.workspace = true parallel = ["rayon"] [dependencies] -rayon = { version = "1.5.3", optional = true } +rayon = { version = "1.8.1", optional = true } # Display math equations properly in documentation [package.metadata.docs.rs] diff --git a/plonky2/Cargo.toml b/plonky2/Cargo.toml index ab890934e1..159b93956b 100644 --- a/plonky2/Cargo.toml +++ b/plonky2/Cargo.toml @@ -44,17 +44,17 @@ getrandom = { version = "0.2", default-features = false, features = ["js"] } [dev-dependencies] criterion = { version = "0.5.1", default-features = false } -env_logger = { version = "0.10.0", default-features = false } -num_cpus = { version = "1.14.0", default-features = false } +env_logger = { version = "0.11.2", default-features = false } +num_cpus = { version = "1.16.0", default-features = false } rand = { workspace = true, features = ["getrandom"] } rand_chacha = { version = "0.3.1", default-features = false } serde_cbor = { version = "0.11.2" } serde_json = { version = "1.0" } structopt = { version = "0.3.26", default-features = false } -tynm = { version = "0.1.6", default-features = false } +tynm = { version = "0.1.10", default-features = false } [target.'cfg(not(target_env = "msvc"))'.dev-dependencies] -jemallocator = "0.5.0" +jemallocator = "0.5.4" [[bin]] name = "generate_constants" diff --git a/starky/Cargo.toml b/starky/Cargo.toml index d43bc8875a..1b9ce4d748 100644 --- a/starky/Cargo.toml +++ b/starky/Cargo.toml @@ -23,7 +23,7 @@ anyhow = { workspace = true } hashbrown = { workspace = true } itertools = { workspace = true } log = { workspace = true } -num-bigint = { version = "0.4.3", default-features = false } +num-bigint = { version = "0.4.4", default-features = false } # Local dependencies plonky2 = { path = "../plonky2", default-features = false } @@ -31,7 +31,7 @@ plonky2_maybe_rayon = { path = "../maybe_rayon", default-features = false } plonky2_util = { path = "../util", default-features = false } [dev-dependencies] -env_logger = { version = "0.10.0", default-features = false } +env_logger = { version = "0.11.2", default-features = false } # Display math equations properly in documentation [package.metadata.docs.rs]