forked from HarukaMa/aleo-prover
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
74 lines (64 loc) · 1.69 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
[package]
name = "aleo-prover"
version = "0.4.4"
edition = "2021"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#snarkvm = { path = "../../src/snarkVM" }
#snarkvm-algorithms = { path = "../../src/snarkVM/algorithms" }
#snarkos = { path = "../../src/snarkOS" }
#snarkvm = { git = "https://github.com/AleoHQ/snarkVM.git", branch = "testnet3" }
#snarkvm-algorithms = { git = "https://github.com/AleoHQ/snarkVM.git", branch = "testnet3" }
snarkvm = "0.9.6"
snarkvm-algorithms = "0.9.6"
snarkos-node-executor = { git = "https://github.com/AleoHQ/snarkOS.git", branch = "testnet3" }
snarkos-node-messages = { git = "https://github.com/AleoHQ/snarkOS.git", branch = "testnet3" }
rand = "0.8.5"
num_cpus = "1.13.1"
rayon = "1.5.1"
anyhow = "1.0.53"
tracing = "0.1.30"
tracing-subscriber = "0.3.8"
tokio-stream = "0.1.8"
futures = "0.3.21"
futures-util = "0.3.21"
crossbeam = "0.8.1"
bytes = "1.1.0"
bincode = "1.3.3"
byteorder = "1.4.3"
ansi_term = "0.12.1"
json-rpc-types = "1.0.3"
hex = "0.4.3"
#[dependencies.aleo-stratum]
#git = "https://github.com/HarukaMa/aleo-pool-server"
#branch = "testnet3-dummy"
#path = "../aleo-operator/stratum"
[dependencies.clap]
version = "4.0.10"
features = ["derive"]
[dependencies.tokio]
version = "1.16.1"
features = [
"rt-multi-thread",
"macros",
"sync",
"net"
]
[dependencies.tokio-util]
version = "0.7.0"
features = ["codec"]
[dependencies.serde_json]
version = "1.0.82"
features = ["preserve_order"]
[features]
#cuda = ["snarkvm/cuda"]
[profile.dev]
opt-level = 1
debug-assertions = false
[profile.release]
opt-level = 3
debug = 1
lto = true
codegen-units = 1
panic = "abort"