Skip to content

Commit

Permalink
Merge pull request #65 from 0xmozak/matthias/upgrade-dependencies
Browse files Browse the repository at this point in the history
Upgrade dependencies
  • Loading branch information
matthiasgoergens authored Feb 27, 2024
2 parents 3c735ea + aa5a3ea commit 7a3b7d4
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion maybe_rayon/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
8 changes: 4 additions & 4 deletions plonky2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions starky/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ 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 }
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]
Expand Down

0 comments on commit 7a3b7d4

Please sign in to comment.