-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (47 loc) · 1.43 KB
/
Cargo.toml
File metadata and controls
52 lines (47 loc) · 1.43 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
[workspace]
members = ["service", "zkVM/common", "zkVM/sp1", "zkVM/sp1/program-chacha"]
default-members = ["service"]
resolver = "3"
[workspace.package]
version = "0.3.0"
edition = "2024"
authors = ["Nuke <nuke-web3@proton.me>"]
license = "MIT"
homepage = "https://celestia.org"
repository = "https://github.com/celestiaorg/private-blockspace-proxy"
[workspace.dependencies]
zkvm-common = { path = "zkVM/common", default-features = false, version = "0.3.0" }
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
hex = "0.4"
sp1-zkvm = "5.2"
sp1-sdk = "5.2"
sp1-build = "5.2"
chacha20 = "0.9"
jsonrpsee = { version = "0.26", features = ["macros", "server", "http-client"] }
serde = { version = "1.0", default-features = false, features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
celestia-client = "0.2"
dotenv = "0.15"
hyper-rustls = "0.27"
hyper = "1.6"
hyper-util = "0.1"
http = "1.3"
http-body-util = "0.1"
base64 = "0.22"
bincode = "1.3"
log = "0.4"
sled = "0.34"
thiserror = "2.0"
env_logger = "0.11"
rand = { version = "0.9", default-features = false, features = ["os_rng"] }
rustls = "0.23"
tokio-rustls = "0.26"
rustls-pemfile = "2.2"
sha2 = "=0.10.8"
[patch.crates-io]
# TODO: update to 5.0?
sha2 = { git = "https://github.com/sp1-patches/RustCrypto-hashes", tag = "patch-sha2-0.10.8-sp1-4.0.0" }
[workspace.features]
reproducible-elf = ["service/reproducible-elf", "zkVM/sp1/reproducible-elf"]