This repository has been archived by the owner on Aug 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
85 lines (71 loc) · 1.66 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
[package]
edition = "2021"
name = "blobstreamx"
version = "0.1.0"
[lib]
path = "circuits/lib.rs"
[[bin]]
name = "local_relay"
path = "bin/local_relay.rs"
[[bin]]
name = "next_header"
path = "bin/next_header.rs"
[[bin]]
name = "header_range_1024"
path = "bin/header_range_1024.rs"
[[bin]]
name = "header_range_2048"
path = "bin/header_range_2048.rs"
[[bin]]
name = "next_header_mocha"
path = "bin/next_header_mocha.rs"
[[bin]]
name = "header_range_mocha"
path = "bin/header_range_mocha.rs"
[[bin]]
name = "blobstreamx"
path = "bin/blobstreamx.rs"
[[bin]]
name = "genesis"
path = "bin/genesis.rs"
[[bin]]
name = "fetch"
path = "bin/fetch.rs"
[features]
ci = []
[profile.release]
incremental = true
opt-level = 3
#lto = "fat"
#codegen-units = 1
[profile.bench]
opt-level = 3
[dependencies]
reqwest = { version = "0.11", default-features = false, features = [
"json",
"rustls-tls",
] }
reqwest-middleware = { version = "0.3.2", default-features = false, features = [
"json",
"rustls-tls",
] }
alloy-primitives = "0.4.2"
alloy-sol-types = "0.4.2"
anyhow = "1.0.71"
async-trait = "0.1.73"
clap = { version = "4.3.18", features = ["derive"] }
dotenv = "0.15.0"
env_logger = "0.10.0"
ethers = "2.0.9"
futures = "0.3.30"
log = "0.4.19"
plonky2x = { git = "https://github.com/succinctlabs/succinctx.git", tag = "v1.0.3" }
reqwest-retry = "0.6.0"
serde = "1.0.175"
serde_json = "1.0.103"
subtle-encoding = "0.5.1"
succinct-client = { git = "https://github.com/succinctlabs/succinctx.git" }
tendermint = "0.33.0"
tendermint-proto = "0.33.0"
tendermintx = { git = "https://github.com/succinctlabs/tendermintx.git", tag = "v1.0.0" }
tokio = { version = "1.29.1", features = ["full"] }