-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 1.18 KB
/
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
[package]
name = "nlookup"
version = "0.1.0"
edition = "2021"
[dependencies]
ark-ff = { version = "0.5.0", default-features = false }
ark-ec = { version = "0.5.0", default-features = false }
ark-poly = { version = "0.5.0", default-features = false }
ark-serialize = { version = "0.5.0", default-features = false }
ark-relations = { version = "0.5.0", default-features = false }
ark-r1cs-std = { version = "0.5.0", default-features = false }
ark-pallas = { version = "0.5.0" }
ark-std = { version = "0.5.0", default-features = false }
ark-crypto-primitives = { version = "0.5.0", features = ["sponge","r1cs"] }
itertools = "0.13.0"
rand = "0.8"
# I am playing a dangerous game - do not copy thoughtlessly
bellpepper-core = { version="0.4.0", default-features = false }
bellpepper = { version="0.4.0", default-features = false }
ff = { version = "0.13.0", features = ["derive"] }
pasta_curves = { version = "0.5", features = ["repr-c", "serde"] }
nova-snark = { git = "https://github.com/jkwoods/Nova.git", branch = "cmts", default-features = false }
tracing-subscriber = { version = "0.2" }
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
[profile.test]
opt-level = 3