forked from succinctlabs/op-succinct
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
102 lines (84 loc) · 2.1 KB
/
Cargo.toml
File metadata and controls
102 lines (84 loc) · 2.1 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
[package]
name = "op-succinct-scripts"
version.workspace = true
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
[lib]
name = "op_succinct_scripts"
path = "src/lib.rs"
[[bin]]
name = "fetch-and-save-proof"
path = "bin/fetch_and_save_proof.rs"
[[bin]]
name = "config"
path = "bin/config.rs"
[[bin]]
name = "cost-estimator"
path = "bin/cost_estimator.rs"
[[bin]]
name = "block-data"
path = "bin/block_data.rs"
[[bin]]
name = "fetch-l2oo-config"
path = "bin/fetch_l2oo_config.rs"
[[bin]]
name = "fetch-fault-dispute-game-config"
path = "bin/fetch_fault_dispute_game_config.rs"
[[bin]]
name = "gen-sp1-test-artifacts"
path = "bin/gen_sp1_test_artifacts.rs"
[[bin]]
name = "game-monitor"
path = "bin/game_monitor.rs"
[[bin]]
name = "parallel-cost-estimator"
path = "bin/parallel_cost_estimator.rs"
[[bin]]
name = "preflight"
path = "bin/preflight.rs"
[dependencies]
# workspace
alloy-network.workspace = true
alloy-node-bindings.workspace = true
alloy-provider = { workspace = true, features = ["reqwest"] }
alloy-transport-http = { workspace = true, features = [
"reqwest",
"reqwest-native-tls",
] }
alloy-primitives.workspace = true
alloy-sol-types.workspace = true
alloy-signer-local.workspace = true
alloy-eips.workspace = true
bincode.workspace = true
tokio.workspace = true
clap.workspace = true
cargo_metadata.workspace = true
anyhow.workspace = true
dotenv.workspace = true
log.workspace = true
csv.workspace = true
serde.workspace = true
futures.workspace = true
serde_json.workspace = true
tracing.workspace = true
# local
op-succinct-host-utils.workspace = true
op-succinct-client-utils.workspace = true
op-succinct-proof-utils.workspace = true
op-succinct-elfs.workspace = true
op-succinct-fp.workspace = true
# sp1
sp1-sdk.workspace = true
rustls = "0.23.23"
rayon = "1.10.0"
env_logger = "0.11"
[build-dependencies]
op-succinct-build-utils.workspace = true
[features]
default = ["ethereum"]
eigenda = ["op-succinct-proof-utils/eigenda"]
celestia = ["op-succinct-proof-utils/celestia"]
ethereum = ["op-succinct-proof-utils/ethereum"]