Skip to content

Commit

Permalink
revert p3 dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kevjue committed Nov 22, 2024
1 parent 84deca2 commit 8681a56
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 40 deletions.
18 changes: 18 additions & 0 deletions Cargo.lock

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

80 changes: 40 additions & 40 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,47 +100,47 @@ test-artifacts = { path = "crates/test-artifacts", version = "3.0.0" }

# For local development.

# p3-air = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-field = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-commit = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-matrix = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-util = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-challenger = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-dft = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-fri = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-goldilocks = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-keccak = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-keccak-air = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-blake3 = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-mds = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-symmetric = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-uni-stark = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
# p3-bn254-fr = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-air = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-field = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-commit = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-matrix = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-baby-bear = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-util = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-challenger = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-dft = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-fri = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-goldilocks = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-keccak = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-keccak-air = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-blake3 = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-mds = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-merkle-tree = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-poseidon2 = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-symmetric = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-uni-stark = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-maybe-rayon = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }
p3-bn254-fr = { git = "https://github.com/Plonky3/Plonky3", branch = "sp1-v4" }

p3-air = { path = "../Plonky3/air" }
p3-field = { path = "../Plonky3/field" }
p3-commit = { path = "../Plonky3/commit" }
p3-matrix = { path = "../Plonky3/matrix" }
p3-baby-bear = { path = "../Plonky3/baby-bear" }
p3-util = { path = "../Plonky3/util" }
p3-challenger = { path = "../Plonky3/challenger" }
p3-dft = { path = "../Plonky3/dft" }
p3-fri = { path = "../Plonky3/fri" }
p3-goldilocks = { path = "../Plonky3/goldilocks" }
p3-keccak = { path = "../Plonky3/keccak" }
p3-keccak-air = { path = "../Plonky3/keccak-air" }
p3-blake3 = { path = "../Plonky3/blake3" }
p3-mds = { path = "../Plonky3/mds" }
p3-merkle-tree = { path = "../Plonky3/merkle-tree" }
p3-poseidon2 = { path = "../Plonky3/poseidon2" }
p3-symmetric = { path = "../Plonky3/symmetric" }
p3-uni-stark = { path = "../Plonky3/uni-stark" }
p3-maybe-rayon = { path = "../Plonky3/maybe-rayon" }
p3-bn254-fr = { path = "../Plonky3/bn254-fr" }
# p3-air = { path = "../Plonky3/air" }
# p3-field = { path = "../Plonky3/field" }
# p3-commit = { path = "../Plonky3/commit" }
# p3-matrix = { path = "../Plonky3/matrix" }
# p3-baby-bear = { path = "../Plonky3/baby-bear" }
# p3-util = { path = "../Plonky3/util" }
# p3-challenger = { path = "../Plonky3/challenger" }
# p3-dft = { path = "../Plonky3/dft" }
# p3-fri = { path = "../Plonky3/fri" }
# p3-goldilocks = { path = "../Plonky3/goldilocks" }
# p3-keccak = { path = "../Plonky3/keccak" }
# p3-keccak-air = { path = "../Plonky3/keccak-air" }
# p3-blake3 = { path = "../Plonky3/blake3" }
# p3-mds = { path = "../Plonky3/mds" }
# p3-merkle-tree = { path = "../Plonky3/merkle-tree" }
# p3-poseidon2 = { path = "../Plonky3/poseidon2" }
# p3-symmetric = { path = "../Plonky3/symmetric" }
# p3-uni-stark = { path = "../Plonky3/uni-stark" }
# p3-maybe-rayon = { path = "../Plonky3/maybe-rayon" }
# p3-bn254-fr = { path = "../Plonky3/bn254-fr" }

# misc
hashbrown = "0.14.5"
Expand Down
16 changes: 16 additions & 0 deletions crates/test-artifacts/programs/Cargo.lock

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

0 comments on commit 8681a56

Please sign in to comment.