-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
159 lines (145 loc) · 5.33 KB
/
Copy pathCargo.toml
File metadata and controls
159 lines (145 loc) · 5.33 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[workspace]
resolver = "2"
members = [
"bin/api",
"bin/bidder",
"bin/cli",
"bin/coordinator",
"bin/fulfiller",
"bin/network-gateway",
"bin/node",
"bin/test-cluster",
"crates/artifact",
"crates/common",
"crates/fulfillment",
"crates/utils",
"crates/worker",
]
[workspace.package]
version = "2.5.4"
edition = "2021"
repository = "https://github.com/succinctlabs/sp1-cluster"
keywords = []
categories = []
[workspace.dependencies]
# Workspace
sp1-cluster-artifact = { path = "crates/artifact" }
sp1-cluster-common = { path = "crates/common" }
sp1-cluster-fulfillment = { path = "crates/fulfillment" }
sp1-cluster-utils = { path = "crates/utils" }
sp1-cluster-worker = { path = "crates/worker" }
# P3
p3-baby-bear = "=0.3.3-succinct"
p3-challenger = "=0.3.3-succinct"
p3-field = "=0.3.3-succinct"
p3-matrix = "=0.3.3-succinct"
# SPN
spn-artifacts = { git = "https://github.com/succinctlabs/network", branch = "main" }
spn-metrics = { git = "https://github.com/succinctlabs/network", branch = "main" }
spn-network-types = { git = "https://github.com/succinctlabs/network", branch = "main", features = ["network"] }
spn-pricing = { git = "https://github.com/succinctlabs/network", branch = "main" }
spn-utils = { git = "https://github.com/succinctlabs/network", branch = "main" }
# SP1
#
# Pinned to the sp1#2862 merge commit on main (7ea83d064 = v6.3.1 + the
# ClusterService manifest RPCs; the old WorkerService.GetClusterComponentInfo is
# removed). The whole sp1 family must share one source or the workspace gets two
# sp1-prover-types packages and E0308 mismatches. Switch back to released crates
# once a release including sp1#2862 is cut.
sp1-core-executor = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-core-machine = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064", features = ["bigint-rug"] }
sp1-hypercube = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-primitives = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-prover = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-prover-types = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-recursion-circuit = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-recursion-compiler = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-recursion-executor = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-sdk = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064", features = ["network"] }
# SP1 GPU
sp1-gpu-cudart = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
sp1-gpu-prover = { git = "https://github.com/succinctlabs/sp1", rev = "7ea83d064" }
# Misc
alloy = { version = "=1.1.3", default-features = false, features = ["serde"] }
alloy-primitives = { version = "1.2.0", default-features = false, features = ["serde"] }
alloy-signer-local = { version = "=1.1.3" }
anyhow = "1.0.95"
async-channel = "2.3.1"
async-scoped = "0.9.0"
async-trait = "0.1.85"
aws-config = { version = "1.1.7", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.84.0"
aws-smithy-async = "1.2.5"
axum = "0.8.4"
backoff = "0.4.0"
bincode = "1.3.3"
bytes = "1.10.1"
cfg-if = "1.0.0"
chrono = { version = "0.4.40", features = ["alloc", "now"] }
clap = { version = "4.4", features = ["derive", "env"] }
config = "0.14.0"
ctrlc = { version = "3.4.5", features = ["termination"] }
dashmap = "6.1.0"
deadpool-redis = "0.22.0"
dirs = "6.0.0"
dotenv = "0.15.0"
eyre = "0.6.12"
flate2 = "1.1.4"
futures = "0.3.31"
hashbrown = "0.15.3"
hex = "0.4.3"
http = "1.3.1"
if-addrs = "0.13.4"
jemallocator = "0.5.4"
lazy_static = "1.5.0"
log = "0.4.27"
lru = "0.14.0"
mti = "1.0.7-beta.1"
opentelemetry = "0.23.0"
opentelemetry-appender-tracing = "0.4.0"
opentelemetry-otlp = "0.16.0"
opentelemetry_sdk = "0.23.0"
prost = "0.13.5"
rand = "0.9.0"
reqwest = "0.12.12"
rustix = { version = "0.38", features = ["fs"] }
rustls = { version = "0.23.27", features = ["ring"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.138"
sqlx = { version = "0.8.5", features = ["runtime-tokio", "tls-native-tls", "macros", "postgres", "time"] }
sys-info = "0.9.1"
sysinfo = "0.33.1"
tar = "0.4.44"
testcontainers = "0.27.3"
time = { version = "0.3.41", features = ["serde"] }
tokio = { version = "1.45.0", features = ["full", "tracing", "rt-multi-thread"] }
tokio-blocked = "0.1.0"
tokio-stream = "0.1"
tokio-util = "0.7.18"
tonic = { version = "0.12.3", features = ["tls"] }
tonic-build = "0.12.3"
tonic-web = "0.12.3"
tower = "0.5.2"
tracing = "0.1.41"
tracing-opentelemetry = "0.24.0"
tracing-subscriber = "0.3.19"
# Pin vergen to 9.0.6 to fix vergen-lib version conflict
# vergen 9.1.0 uses vergen-lib 9.x, but vergen-git2 1.x needs vergen-lib 0.1.x
# vergen 9.0.6 uses vergen-lib 0.1.x which is compatible
vergen = "=9.0.6"
vergen-git2 = { version = "1.0.1", default-features = false, features = ["build", "cargo", "rustc", "si"] }
zstd = "0.13.3"
[workspace.metadata.cargo-shear]
ignored = ["prost", "serde"]
[profile.release]
debug = true
[profile.release.build-override]
opt-level = 3
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3
[profile.dev.build-override]
opt-level = 3