This repository has been archived by the owner on Oct 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Cargo.toml
93 lines (78 loc) · 2.05 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
[package]
name = "aleo-prover"
version = "0.7.0"
edition = "2021"
license = "GPL-3.0-or-later"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
# for appimage
[[bin]]
name = "aleo-prover"
path = "src/main.rs"
[dependencies]
#snarkvm = { path = "../../src/snarkVM" }
#snarkvm-algorithms = { path = "../../src/snarkVM/algorithms" }
#snarkos = { path = "../../src/snarkOS" }
snarkvm = { git = "https://github.com/AleoNet/snarkVM.git", rev = "be171ce" }
snarkvm-ledger-puzzle-epoch = { git = "https://github.com/AleoNet/snarkVM.git", rev = "be171ce", default-features = false, features = ["serial"] }
#snarkos-account = { git = "https://github.com/AleoNet/snarkOS", rev = "22510524" }
#snarkos-node-router-messages = { git = "https://github.com/AleoNet/snarkOS", rev = "22510524" }
#snarkos-account = { path = "../snarkOS/account" }
#snarkos-node-router-messages = { path = "../snarkOS/node/router/messages" }
rand = "0.8.5"
num_cpus = "1.16.0"
rayon = "1.10.0"
anyhow = "1.0.86"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
tokio-stream = "0.1.15"
futures = "0.3.30"
futures-util = "0.3.30"
crossbeam = "0.8.4"
bytes = "1.7.1"
bincode = "1.3.3"
byteorder = "1.5.0"
ansi_term = "0.12.1"
json-rpc-types = "1.3.4"
hex = "0.4.3"
dotenvy = "0.15.7"
core_affinity = "0.8.1"
[dependencies.aleo-stratum]
git = "https://github.com/HarukaMa/aleo-pool-server"
branch = "mainnet"
#path = "../aleo-operator/stratum"
[dependencies.clap]
version = "4.5.16"
features = ["derive"]
[dependencies.tokio]
version = "1.39.3"
features = [
"rt",
"rt-multi-thread",
"macros",
"sync",
"net"
]
[dependencies.tokio-util]
version = "0.7.11"
features = ["codec"]
[dependencies.serde_json]
version = "1.0.127"
features = ["preserve_order"]
[features]
#cuda = ["snarkvm/cuda"]
[profile.dev]
opt-level = 1
debug-assertions = false
[profile.release]
opt-level = 3
debug = 1
lto = false
#codegen-units = 1
panic = "abort"
[package.metadata.appimage]
auto_link = true
auto_link_exclude_list = [
"libc.so*",
"libdl.so*",
"libpthread.so*",
]