-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (48 loc) · 1.42 KB
/
Cargo.toml
File metadata and controls
57 lines (48 loc) · 1.42 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
[workspace]
members = ["bin/*", "crates/*"]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2024"
[workspace.dependencies]
# Shared dependencies
anyhow = "1.0.98"
axum = "0.7.9"
backoff = { version = "0.4", features = ["tokio"] }
bincode = "1.3.3"
crossbeam = "0.8.4"
dotenv = "0.15.0"
futures = "0.3"
lru = "0.16.0"
mti = "1.0.0"
reqwest = "0.12.23"
rustls = "0.23.31"
tokio = { version = "1.45", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["io-util"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.145"
clap = { version = "4.5.40", features = ["derive", "env"] }
tracing = "0.1.41"
thiserror = "2.0.12"
# Workspace
sp1-tee-private-types = { path = "./crates/types" }
sp1-tee-private-utils = { path = "./crates/utils" }
# SP1
sp1-sdk = { version = "5.2.4", features = ["network", "native-gnark"] }
sp1-prover = { version = "5.2.4" }
sp1-core-executor = { version = "5.2.4" }
spn-artifacts = { git = "https://github.com/succinctlabs/network" }
spn-utils = { git = "https://github.com/succinctlabs/network" }
# Alloy
alloy-primitives = { version = "1.2.1", features = ["rand"] }
# Prost
prost-types = "0.13.0"
prost-build = "0.13.0"
prost = "0.13.0"
# Tonic
tonic = { version = "0.12" }
tonic-build = "0.12.0"
[patch.crates-io]
# sp1-sdk = { path = "../sp1/crates/sdk" }
# sp1-prover = { path = "../sp1/crates/prover" }
# sp1-core-executor = { path = "../sp1/crates/core/executor" }