Skip to content

Commit 3a9e040

Browse files
authored
Merge pull request #6 from scroll-tech/adjust_dep
visibility and full rev of p3
2 parents 583ea62 + 9dde55b commit 3a9e040

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -39,28 +39,28 @@ clap = { version = "4.5", features = ["derive"] }
3939
criterion = { version = "0.5", features = ["html_reports"] }
4040
either = { version = "1.15.*", features = ["serde"] }
4141
itertools = "0.13"
42-
p3-baby-bear = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
43-
p3-challenger = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
44-
p3-commit = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
45-
p3-dft = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
46-
p3-field = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
47-
p3-fri = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
48-
p3-goldilocks = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
49-
p3-matrix = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
50-
p3-maybe-rayon = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
51-
p3-mds = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
52-
p3-merkle-tree = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
53-
p3-poseidon = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
54-
p3-poseidon2 = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
55-
p3-symmetric = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
56-
p3-util = { git = "https://github.com/Plonky3/plonky3", rev = "539bbc8" }
42+
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
43+
p3-challenger = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
44+
p3-commit = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
45+
p3-dft = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
46+
p3-field = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
47+
p3-fri = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
48+
p3-goldilocks = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
49+
p3-matrix = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
50+
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
51+
p3-mds = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
52+
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
53+
p3-poseidon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
54+
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
55+
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
56+
p3-util = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5757
rand = "0.8"
5858
rand_chacha = { version = "0.3", features = ["serde1"] }
5959
rand_core = "0.6"
6060
rayon = "1.10"
6161
serde = { version = "1.0", features = ["derive", "rc"] }
6262
serde_json = "1.0"
63-
thiserror = "1" # do we need this?
63+
thiserror = "1" # do we need this?
6464
tracing = { version = "0.1", features = ["attributes"] }
6565
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
6666

crates/multilinear_extensions/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#![deny(clippy::cargo)]
22
#![feature(decl_macro)]
33
#![feature(strict_overflow_ops)]
4-
mod expression;
4+
pub mod expression;
55
pub use expression::{utils::monomialize_expr_to_wit_terms, *};
66
pub mod macros;
77
pub mod mle;

0 commit comments

Comments
 (0)