Skip to content

Commit

Permalink
Merge pull request #25 from varunthakore/master
Browse files Browse the repository at this point in the history
feat: implement Pedersen hash
  • Loading branch information
varunthakore authored Oct 21, 2024
2 parents ee27cd3 + be91012 commit b4fc6b5
Show file tree
Hide file tree
Showing 7 changed files with 17,967 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[workspace]
members = ["felt", "commitment_scheme", "poseidon", "randomness", "channel", "fri"]
members = ["felt", "commitment_scheme", "poseidon", "randomness", "channel", "fri", "pedersen"]
resolver = "2"

[workspace.dependencies]
anyhow = "1.0.86"
ark-ff = { git = "https://github.com/jaehunkim/algebra", branch = "v0.4.2-fix" }
ark-poly = { git = "https://github.com/jaehunkim/algebra", branch = "v0.4.2-fix" }
ark-ff = "0.4.2"
ark-poly = "0.4.2"
sha3 = "0.10.8"
blake2 = "0.10.6"
hex-literal = "0.4.1"
Expand All @@ -15,3 +15,5 @@ serde = { version = "1.0.205", features = ["derive"] }
paste = "1.0"
hex = "0.4"
rand = "0.8"
ark-ec = "0.4.2"
lazy_static = "1.4.0"
13 changes: 13 additions & 0 deletions pedersen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "pedersen"
version = "0.1.0"
edition = "2021"
license = "MIT"

[dependencies]
ark-ff.workspace = true
ark-ec.workspace = true
felt = { path = "../felt"}
num-bigint.workspace = true
anyhow.workspace = true
lazy_static.workspace = true
Loading

0 comments on commit b4fc6b5

Please sign in to comment.