Skip to content

Commit 47359f6

Browse files
committed
visibility and full rev of p3
1 parent 583ea62 commit 47359f6

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ 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"

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)