Skip to content

Commit a1050f9

Browse files
authored
chore: make p3-poseidon2-air public (#12)
* make p3-poseidon2-air public * taplo fmt * make p3-air public * make p3-monty-31 public
1 parent 44e4aa4 commit a1050f9

File tree

4 files changed

+80
-1
lines changed

4 files changed

+80
-1
lines changed

Cargo.lock

Lines changed: 70 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ either = { version = "1.15.*", features = ["serde"] }
4343
generic-array = { version = "1.1.0", features = ["alloc", "serde"] }
4444
itertools = "0.13"
4545
num = "0.4.3"
46+
p3-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
4647
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
4748
p3-challenger = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
4849
p3-commit = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
@@ -54,8 +55,10 @@ p3-matrix = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085
5455
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5556
p3-mds = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5657
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
58+
p3-monty-31 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5759
p3-poseidon = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5860
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
61+
p3-poseidon2-air = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
5962
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
6063
p3-util = { git = "https://github.com/Plonky3/Plonky3.git", rev = "539bbc84085efb609f4f62cb03cf49588388abdb" }
6164
rand = "0.8"
@@ -64,7 +67,7 @@ rand_core = "0.6"
6467
rayon = "1.10"
6568
serde = { version = "1.0", features = ["derive", "rc"] }
6669
serde_json = "1.0"
67-
thiserror = "1" # do we need this?
70+
thiserror = "1" # do we need this?
6871
tracing = { version = "0.1", features = ["attributes"] }
6972
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
7073

crates/p3/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ repository.workspace = true
1010
version.workspace = true
1111

1212
[dependencies]
13+
p3-air.workspace = true
1314
p3-baby-bear.workspace = true
1415
p3-challenger.workspace = true
1516
p3-commit.workspace = true
@@ -21,8 +22,10 @@ p3-matrix.workspace = true
2122
p3-maybe-rayon.workspace = true
2223
p3-mds.workspace = true
2324
p3-merkle-tree.workspace = true
25+
p3-monty-31.workspace = true
2426
p3-poseidon.workspace = true
2527
p3-poseidon2.workspace = true
28+
p3-poseidon2-air.workspace = true
2629
p3-symmetric.workspace = true
2730
p3-util.workspace = true
2831

crates/p3/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
pub use p3_air as air;
12
pub use p3_baby_bear as babybear;
23
pub use p3_challenger as challenger;
34
pub use p3_commit as commit;
@@ -9,7 +10,9 @@ pub use p3_matrix as matrix;
910
pub use p3_maybe_rayon as maybe_rayon;
1011
pub use p3_mds as mds;
1112
pub use p3_merkle_tree as merkle_tree;
13+
pub use p3_monty_31 as monty_31;
1214
pub use p3_poseidon as poseidon;
1315
pub use p3_poseidon2 as poseidon2;
16+
pub use p3_poseidon2_air as poseidon2_air;
1417
pub use p3_symmetric as symmetric;
1518
pub use p3_util as util;

0 commit comments

Comments
 (0)