Skip to content

Commit

Permalink
[wip] Add basic trusted setup and kzg (#22)
Browse files Browse the repository at this point in the history
* Add basic trusted setup and kzg

* Cleanup main

* Reorder main

* Fix lint

---------

Co-authored-by: devloper <[email protected]>
Co-authored-by: Waylon Jepsen <[email protected]>
  • Loading branch information
3 people authored May 6, 2024
1 parent 8032372 commit fb27e5f
Show file tree
Hide file tree
Showing 4 changed files with 431 additions and 9 deletions.
288 changes: 285 additions & 3 deletions Cargo.lock

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

17 changes: 11 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ repository ="https://github.com/thor314/ronkathon"
version ="0.1.0"

[dependencies]
anyhow ="1.0"
p3-field ={ version="0.1.0", git="https://github.com/Plonky3/Plonky3.git" }
itertools ="0.12.0"
serde ={ version="1.0", default-features=false, features=["derive"] }
num-bigint={ version="0.4.3", default-features=false }
rand ="0.8.5"
anyhow = "1.0"
p3-field = { version="0.1.0", git="https://github.com/Plonky3/Plonky3.git" }
itertools = "0.12.0"
rand = "0.8"
serde = { version="1.0", default-features=false, features=["derive"] }
num-bigint= { version="0.4.3", default-features=false }
ark-std = { version = "0.4.0", default-features = false }
ark-bn254 = "0.4.0"
ark-poly = "0.4.0"
ark-ff = "0.4.0"
ark-ec = "0.4.0"
Loading

0 comments on commit fb27e5f

Please sign in to comment.