-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
99 lines (78 loc) · 2.57 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[package]
name = "lambdavm"
version = "0.1.0"
edition = "2021"
[profile.test]
opt-level = 3
debug-assertions = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ark-ff = { version = "^0.3.0", default-features = false }
ark-ec = { version = "^0.3.0", default-features = false }
ark-ed-on-bls12-381 = { version = "^0.3.0", features = ["r1cs"] }
ark-bls12-381 = { version = "^0.3.0", default-features = false, features = ["curve"] }
ark-std = { version = "^0.3.0", default-features = false }
ark-relations = { version = "^0.3.0", default-features = false }
ark-poly = { version = "^0.3.0", default-features = false }
ark-poly-commit = { version = "^0.3.0", default-features = false }
ark-marlin = { git = "https://github.com/Entropy1729/marlin.git", branch = "impl_debug_for_vk" }
ark-r1cs-std = { version = "^0.3.0", default-features = false }
ark-snark = { version = "^0.3.0", default-features = false }
ark-serialize = { version = "^0.3.0", default-features = false }
ark-crypto-primitives = { version = "^0.3.0", default-features = true, features = [ "r1cs" ] }
tracing = { version = "0.1", default-features = false, features = [ "attributes" ] }
tracing-subscriber = { version = "0.2" }
blake2 = { version = "0.9" }
rand_chacha = { version = "0.3.1" }
clap = { version = "4", features = ["derive", "unstable-grouped"] }
derivative = { version = "2.0", features = ["use_core"] }
digest = "0.9"
snarkvm = { git = "https://github.com/Lambdaclass/snarkVM.git", branch = "entropy_fork" }
simpleworks = { git = "https://github.com/Lambdaclass/simpleworks.git" }
anyhow = "1"
hex = "0.4.3"
indexmap = "1"
dirs = "4.0.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
log = "0.4"
sha3 = "0.10"
bincode = "1"
aes = "0.8"
hkdf = "0.12.3"
sha2 = "0.10.6"
rand = "0.8.5"
aes-gcm = "0.10.1"
[[example]]
name = "sample-program"
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[dev-dependencies]
rand = "0.8"
ctor = "0.1.26"
parking_lot = "0.12"
cfg-if = "1"
[dev-dependencies.criterion]
version = "0.4"
features = ["async_futures"]
[dev-dependencies.pprof]
version = "0.11"
features = ["criterion", "flamegraph", "frame-pointer"]
default-features = false
[[bench]]
name = "benchmark_aleo_roulette"
harness = false
[[bench]]
name = "benchmark_aleo_credits"
harness = false
[features]
snarkvm_backend_flamegraph = ["benchmark_flamegraph"]
snarkvm_backend = []
lambdavm_backend_flamegraph = ["benchmark_flamegraph"]
lambdavm_backend = []
benchmark_flamegraph = []