forked from 6block/zkwork_aleo_worker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
119 lines (93 loc) · 2.06 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[package]
name = "zkwork_aleo_worker"
build = "build.rs"
version = "0.4.2"
edition = "2021"
authors = [ "The zk.work team <[email protected]>" ]
homepage = "https://zk.work"
license = "GPL-3.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
once_cell = "1.19.0"
[dependencies.bytes]
version = "1.0.0"
[dependencies.zkwork_aleo_protocol]
git = "https://github.com/6block/zkwork_aleo_protocol.git"
branch = "aleo/testnet-beta"
[dependencies.tracing]
version = "0.1"
[dependencies.snarkvm]
git = "https://github.com/AleoNet/snarkVM.git"
rev = "d170a9f"
features = [ "console" ]
[dependencies.anyhow]
version = "1"
[dependencies.tokio]
version = "1.21"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"signal",
"sync",
"time"
]
[dependencies.tokio-util]
version = "0.7"
features = [ "codec" ]
[dependencies.structopt]
version = "0.3"
[dependencies.tokio-rustls]
version = "0.23.2"
[dependencies.tokio-stream]
version = "=0.1"
[dependencies.rustls-pemfile]
version = "1.0.1"
[dependencies.rayon]
version = "1"
[dependencies.num_cpus]
version = "1"
[dependencies.futures]
version = "0.3.21"
features = [ "thread-pool" ]
[dependencies.rand]
version = "0.8"
[dependencies.tracing-subscriber]
version = "0.3.16"
features = ["time", "env-filter", "local-time"]
[dependencies.crossterm]
version = "0.25.0"
[dependencies.secp256k1]
version = "0.25.0"
features = ["rand", "rand-std", "bitcoin_hashes"]
[dependencies.tokio-native-tls]
version = "0.3.0"
[build-dependencies.vergen]
version = "7"
[features]
cuda = ["snarkvm/cuda"]
[profile.release]
opt-level = 3
lto = "thin"
incremental = true
[profile.bench]
opt-level = 3
debug = false
rpath = false
lto = "thin"
incremental = true
debug-assertions = false
[profile.dev]
opt-level = 3
lto = "thin"
incremental = true
debug-assertions = false
[profile.test]
opt-level = 3
lto = "thin"
incremental = true
debug = true
debug-assertions = true
[patch."https://github.com/AleoNet/snarkVM.git"]
snarkvm = { git = "https://github.com/scuwan/snarkVM.git", branch = "6block" }