-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
146 lines (134 loc) · 4.04 KB
/
Copy pathCargo.toml
File metadata and controls
146 lines (134 loc) · 4.04 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
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.91"
repository = "https://github.com/succinctlabs/sp1"
keywords = ["sp1", "succinct", "zero-knowledge", "zkvm"]
categories = ["cryptography"]
[workspace]
members = [
"bin/node",
"crates/network/artifacts",
"crates/network/bidding",
"crates/network/pricing",
"crates/network/rpc",
"crates/network/utils",
"crates/node/calibrator",
"crates/node/core",
"crates/node/metrics",
"crates/types/artifact",
"crates/types/network",
"crates/vapp",
"programs/examples/fibonacci",
"programs/examples/is-prime",
"programs/vapp/aggregation",
"programs/vapp/stf",
]
resolver = "2"
[workspace.dependencies]
# spn
spn-artifacts = { path = "crates/network/artifacts" }
spn-pricing = { path = "crates/network/pricing" }
spn-rpc = { path = "crates/network/rpc" }
spn-utils = { path = "crates/network/utils" }
spn-calibrator = { path = "crates/node/calibrator" }
spn-node-core = { path = "crates/node/core" }
spn-artifact-types = { path = "crates/types/artifact" }
spn-network-types = { path = "crates/types/network" }
spn-vapp-core = { path = "crates/vapp" }
# sp1
sp1-sdk = "6.1.0"
sp1-prover = "6.1.0"
sp1-verifier = "6.1.0"
sp1-zkvm = "6.1.0"
sp1-build = "6.1.0"
# aws
aws-config = "1.5.3"
aws-sdk-s3 = "1.38.0"
aws-smithy-async = { version = "1.2.1", features = ["rt-tokio"] }
# alloy
alloy-signer = "1.1.3"
alloy-signer-local = "1.1.3"
alloy-primitives = { version = "1.2.0", features = ["k256"] }
alloy-sol-types = "1.1.3"
alloy-json-rpc = "1.1.3"
alloy = { version = "=1.1.3", features = [
"reqwest",
"network",
"providers",
"sol-types",
"rpc-types",
] }
alloy-provider = { version = "1.1.3", default-features = false, features = [
"reqwest",
"reqwest-rustls-tls",
] }
alloy-rpc-types = { version = "1.1.3", default-features = false, features = [
"eth",
] }
alloy-rpc-client = { version = "1.1.3", default-features = false }
alloy-transport = { version = "1.1.3", default-features = false }
alloy-network = { version = "1.1.3", default-features = false }
alloy-rlp = { version = "0.3.3", default-features = false }
# tracing
tracing = "0.1"
tracing-subscriber = { version = "0.3.18", features = [
"json",
"std",
"env-filter",
] }
# prost
prost-types = "0.13.0"
prost-build = "0.13.0"
prost = "0.13.0"
# serde
bincode = "1.3.3"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.104"
# tonic
tonic = { version = "0.12", features = ["tls", "tls-roots", "gzip"] }
tonic-build = "0.12.0"
# metrics
metrics = "0.24.0"
metrics-derive = "0.1"
metrics-exporter-prometheus = { version = "0.16.0", default-features = false }
metrics-process = "2.1.0"
metrics-util = { default-features = false, version = "0.18.0" }
# misc
anyhow = "1.0.71"
async-trait = "0.1.68"
axum = "0.7.4"
backoff = { version = "0.4", features = ["futures", "tokio"] }
bytes = "1.6.0"
config = "0.14.0"
const-str = "0.5.7"
clap = { version = "4.0", features = ["derive"] }
eyre = "0.6.12"
futures = "0.3.30"
hex = "0.4.3"
lazy_static = "1.5.0"
ring = "0.17"
rustls = { version = "0.23.0", features = ["ring"] }
sqlx = { version = "0.8", features = [
"runtime-tokio",
"tls-native-tls",
"postgres",
"bigdecimal",
"time",
] }
thiserror = "1.0.63"
time = "0.3"
tokio = { version = "1.0", features = ["full"] }
url = "2.5.0"
reqwest = "0.12.0"
sha3 = "0.10.8"
sha2 = "0.10.8"
once_cell = "1.18.0"
socket2 = { version = "0.5", default-features = false }
[patch.crates-io]
sha2-v0-10-8 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha2", tag = "patch-sha2-0.10.8-sp1-6.0.0" }
sha3 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", package = "sha3", tag = "patch-sha3-0.10.8-sp1-6.0.0" }
tiny-keccak = { git = "https://github.com/sp1-patches/tiny-keccak", tag = "patch-2.0.2-sp1-6.0.0" }
k256 = { git = "https://github.com/sp1-patches/elliptic-curves", tag = "patch-k256-13.4-sp1-6.0.0" }
p256 = { git = "https://github.com/sp1-patches/elliptic-curves", tag = "patch-p256-13.2-sp1-6.0.0" }