Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 70 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ either = { version = "1.15.*", features = ["serde"] }
generic-array = { version = "1.1.0", features = ["alloc", "serde"] }
itertools = "0.13"
num = "0.4.3"
p3-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-challenger = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-commit = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
Expand All @@ -54,8 +55,10 @@ p3-matrix = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-mds = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-monty-31 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-poseidon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-poseidon2-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
p3-util = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
rand = "0.8"
Expand All @@ -64,7 +67,7 @@ rand_core = "0.6"
rayon = "1.10"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
thiserror = "1" # do we need this?
thiserror = "1" # do we need this?
tracing = { version = "0.1", features = ["attributes"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

Expand Down
3 changes: 3 additions & 0 deletions crates/p3/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ repository.workspace = true
version.workspace = true

[dependencies]
p3-air.workspace = true
p3-baby-bear.workspace = true
p3-challenger.workspace = true
p3-commit.workspace = true
Expand All @@ -21,8 +22,10 @@ p3-matrix.workspace = true
p3-maybe-rayon.workspace = true
p3-mds.workspace = true
p3-merkle-tree.workspace = true
p3-monty-31.workspace = true
p3-poseidon.workspace = true
p3-poseidon2.workspace = true
p3-poseidon2-air.workspace = true
p3-symmetric.workspace = true
p3-util.workspace = true

Expand Down
3 changes: 3 additions & 0 deletions crates/p3/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
pub use p3_air as air;
pub use p3_baby_bear as babybear;
pub use p3_challenger as challenger;
pub use p3_commit as commit;
Expand All @@ -9,7 +10,9 @@ pub use p3_matrix as matrix;
pub use p3_maybe_rayon as maybe_rayon;
pub use p3_mds as mds;
pub use p3_merkle_tree as merkle_tree;
pub use p3_monty_31 as monty_31;
pub use p3_poseidon as poseidon;
pub use p3_poseidon2 as poseidon2;
pub use p3_poseidon2_air as poseidon2_air;
pub use p3_symmetric as symmetric;
pub use p3_util as util;