-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cl: restructure cl into a workspace and integrate nullifier proof
- Loading branch information
Showing
32 changed files
with
551 additions
and
351 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,11 @@ | ||
[package] | ||
name = "cl" | ||
version = "0.1.0" | ||
edition = "2021" | ||
[workspace] | ||
resolver = "2" | ||
members = [ "cl", "ledger", "proof_statements", "risc0_proofs"] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
serde = {version="1.0", features = ["derive"]} | ||
bincode = "1.3.3" | ||
risc0-groth16 = "1.0.1" | ||
blake2 = "0.10.6" | ||
# jubjub = "0.10.0" | ||
group = "0.13.0" | ||
rand_core = "0.6.0" | ||
rand_chacha = "0.3.1" | ||
lazy_static = "1.4.0" | ||
hex = "0.4.3" | ||
curve25519-dalek = {version = "4.1", features = ["serde", "digest", "rand_core"]} | ||
sha2 = "0.10" | ||
# Always optimize; building and running the risc0_proofs takes much longer without optimization. | ||
[profile.dev] | ||
opt-level = 3 | ||
|
||
[profile.release] | ||
debug = 1 | ||
lto = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "cl" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
serde = {version="1.0", features = ["derive"]} | ||
bincode = "1.3.3" | ||
risc0-groth16 = "1.0.1" | ||
blake2 = "0.10.6" | ||
# jubjub = "0.10.0" | ||
group = "0.13.0" | ||
rand_core = "0.6.0" | ||
rand_chacha = "0.3.1" | ||
lazy_static = "1.4.0" | ||
hex = "0.4.3" | ||
curve25519-dalek = {version = "4.1", features = ["serde", "digest", "rand_core"]} | ||
sha2 = "0.10" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
Oops, something went wrong.