Skip to content

Commit 518633d

Browse files
nyunyunyunyujonathanpwang
authored andcommitted
Update plonky3 commit to 88d7f05 (#2)
1 parent 5819e43 commit 518633d

File tree

1 file changed

+24
-24
lines changed

1 file changed

+24
-24
lines changed

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[workspace.package]
2-
version = "1.0.0-rc.0"
2+
version = "1.0.0-rc.2"
33
edition = "2021"
44
rust-version = "1.82"
55
authors = ["OpenVM contributors"]
@@ -51,32 +51,32 @@ openvm-stark-backend = { path = "crates/stark-backend", default-features = false
5151
openvm-stark-sdk = { path = "crates/stark-sdk", default-features = false }
5252

5353
# Plonky3
54-
p3-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
55-
p3-field = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
56-
p3-commit = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
57-
p3-matrix = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
54+
p3-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
55+
p3-field = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
56+
p3-commit = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
57+
p3-matrix = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
5858
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3.git", features = [
5959
"nightly-features",
60-
], rev = "b0591e9" }
61-
p3-util = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
62-
p3-challenger = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
63-
p3-dft = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
64-
p3-fri = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
65-
p3-goldilocks = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
66-
p3-keccak = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
67-
p3-keccak-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
68-
p3-blake3 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
69-
p3-mds = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
70-
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
71-
p3-monty-31 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
72-
p3-poseidon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
73-
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
74-
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
75-
p3-uni-stark = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
76-
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" } # the "parallel" feature is NOT on by default to allow single-threaded benchmarking
60+
], rev = "88d7f05" }
61+
p3-util = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
62+
p3-challenger = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
63+
p3-dft = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
64+
p3-fri = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
65+
p3-goldilocks = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
66+
p3-keccak = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
67+
p3-keccak-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
68+
p3-blake3 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
69+
p3-mds = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
70+
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
71+
p3-monty-31 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
72+
p3-poseidon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
73+
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
74+
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
75+
p3-uni-stark = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
76+
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" } # the "parallel" feature is NOT on by default to allow single-threaded benchmarking
7777

7878
# Bn254 support
79-
p3-bn254-fr = { git = "https://github.com/Plonky3/Plonky3.git", rev = "b0591e9" }
79+
p3-bn254-fr = { git = "https://github.com/Plonky3/Plonky3.git", rev = "88d7f05" }
8080
zkhash = { git = "https://github.com/HorizenLabs/poseidon2.git", rev = "bb476b9" }
8181
ff = { version = "0.13.0", default-features = false }
8282

@@ -110,7 +110,7 @@ rand = { version = "0.8.5", default-features = false }
110110
hex = { version = "0.4.3", default-features = false }
111111

112112
# default-features = false for no_std
113-
itertools = { version = "0.13.0", default-features = false }
113+
itertools = { version = "0.14.0", default-features = false }
114114
serde = { version = "1.0.201", default-features = false, features = ["derive"] }
115115

116116
# For local development. Add to your `.cargo/config.toml`

0 commit comments

Comments
 (0)