-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
59 lines (54 loc) · 1.72 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
[package]
name = "demo-circuit"
version = "0.7.0"
authors = [
"DanieleDiBenedetto <[email protected]>",
"Oleksandr Iozhytsia <[email protected]>",
"Volodymyr Babaiev <[email protected]>",
"Maksym Vereshchak <[email protected]>",
"Luigi Varriale <[email protected]>",
"cronicc <[email protected]>",
"Paolo Tagliaferri <[email protected]>",
"Michele d'Amico <[email protected]>",
"Nicholas Mainardi <[email protected]>",
]
edition = "2018"
include = ["Cargo.toml", "src"]
[dependencies]
algebra = { features = [
"tweedle",
"ed25519",
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" }
primitives = { features = [
"tweedle",
"signature",
"vrf",
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" }
r1cs-crypto = { features = [
"tweedle",
"signature",
"merkle_tree",
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" }
r1cs-core = { git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" }
r1cs-std = { features = [
"tweedle",
"nonnative",
], git = "https://github.com/HorizenOfficial/ginger-lib.git", tag = "0.6.0" }
cctp_primitives = { git = "https://github.com/HorizenOfficial/zendoo-cctp-lib.git", tag = "0.2.1" }
derivative = "2.2.0"
lazy_static = "1.4.0"
radix_trie = "0.2.1"
rand = { version = "0.8.4" }
blake2 = { version = "0.8.1", default-features = false }
[dev-dependencies]
digest = "0.8.1"
blake2s_simd = "0.5.11"
bit-vec = "0.6.3"
sha2 = "0.8.2"
hex = "0.4.3"
serial_test = "0.5.1"
strum = "0.24.1"
strum_macros = "0.24.3"
[features]
default = ["asm"]
asm = ["algebra/asm", "cctp_primitives/asm", "primitives/asm"]