forked from lurk-lab/lurk-beta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (57 loc) · 1.92 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[package]
name = "lurk"
version = "0.1.1"
authors = ["porcuquine <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Turing-Complete Zero Knowledge"
edition = "2018"
repository = "https://github.com/lurk-lang/lurk-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.45"
bellperson = { version = "0.20", default-features = false, features = ["groth16"] }
dirs = "4.0.0"
blstrs = "0.4.2"
ff = "0.11.0"
generic-array = "0.14.4"
im = "15.1.0"
itertools = "0.9"
log = "0.4.14"
memmap = "0.7"
merlin = "2.0.0"
neptune = { version = "6.2.0", default-features = false, features = ["arity2","arity4","arity8","arity16"] }
nova = { package = "nova-snark", git = "https://github.com/lurk-lang/nova", rev = "fc51e6361716fb718374c44eaee164e2e3cbe70c", default-features = false }
once_cell = "1.9.0"
pairing_lib = { version = "0.21", package = "pairing" }
pretty_env_logger = "0.4"
rand = "0.8"
rayon = "1.5.1"
rustyline = "9.0.0"
rustyline-derive = "0.5.0"
rand_xorshift = "0.3.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
serde_repr = "0.1.7"
indexmap = { version = "1.8.0", features = ["rayon"] }
ahash = "0.7.6"
pasta_curves = "0.3.0"
string-interner = "0.14.0"
dashmap = "5.0.0"
libipld = { package = "lurk-ipld", version = "0.1.0", default-features = false, features = ["dag-cbor", "dag-json", "serde-codec"] }
cid = { version = "0.8.4", default-features = false, features = ["alloc", "serde-codec"]}
multihash = { version = "0.16.1", default-features = false, features = ["alloc", "blake3"] }
[features]
default = ["gpu", "bellperson/default", "nova/default"]
gpu = ["neptune/opencl"]
[dev-dependencies]
criterion = "0.3.5"
structopt = { version = "0.3", default-features = false }
quickcheck = "1.0.3"
quickcheck_macros = "1.0.0"
[[bench]]
name = "eval"
harness = false
[workspace]
members = [
"lurk_macro", "fcomm"
]