2024-06-11 23:40:50 -04:00
|
|
|
[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]
|
2024-06-19 18:49:21 +02:00
|
|
|
serde = {version="1.0", features = ["derive"]}
|
|
|
|
|
bincode = "1.3.3"
|
|
|
|
|
risc0-groth16 = "1.0.1"
|
2024-06-11 23:40:50 -04:00
|
|
|
blake2 = "0.10.6"
|
2024-06-27 16:00:42 +00:00
|
|
|
# jubjub = "0.10.0"
|
2024-06-11 23:40:50 -04:00
|
|
|
group = "0.13.0"
|
|
|
|
|
rand_core = "0.6.0"
|
|
|
|
|
rand_chacha = "0.3.1"
|
2024-06-12 16:28:49 -04:00
|
|
|
lazy_static = "1.4.0"
|
|
|
|
|
hex = "0.4.3"
|
2024-06-27 16:00:42 +00:00
|
|
|
k256 = {version = "0.13.3", features = ["serde", "hash2curve"]}
|
|
|
|
|
# [dependencies.k256]
|
|
|
|
|
# git = "https://github.com/risc0/RustCrypto-elliptic-curves"
|
|
|
|
|
# tag = "k256/v0.13.3-risczero.0"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|