-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (39 loc) · 827 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "rln"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
pasta_curves = "0.2.1"
bitvec = "0.22"
sha2 = "0.10.0"
ff = "0.11.0"
byte-io = "0.1.1"
num-bigint = "0.4"
rand = "0.8.4"
cfg-if = "1.0.0"
[dev-dependencies]
criterion = "0.3"
[lib]
name = "rln"
path = "src/lib.rs"
[[bench]]
name = "full"
harness = false
[[bench]]
name = "merkle"
harness = false
[dependencies.halo2_zcash]
package = "halo2"
git = "https://github.com/zcash/halo2.git"
rev = "18e13b1d093113c93387d38e188d7dc85c64e1ec"
optional = true
[dependencies.halo2_kzg]
package = "halo2"
git = "https://github.com/appliedzkp/halo2.git"
branch = "kzg"
optional = true
[features]
default = ["zcash"]
zcash = ["halo2_zcash"]
kzg = ["halo2_kzg"]