-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathCargo.toml
52 lines (47 loc) · 1.38 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
[package]
name = "kona-host"
version = "0.1.0"
edition.workspace = true
license.workspace = true
authors.workspace = true
repository.workspace = true
homepage.workspace = true
publish = false
[lints]
workspace = true
[dependencies]
# Workspace
kona-mpt.workspace = true
kona-client.workspace = true
kona-common.workspace = true
kona-preimage.workspace = true
kona-providers-alloy.workspace = true
kona-primitives = { workspace = true, features = ["online"] }
# Alloy & Revm
alloy-eips.workspace = true
alloy-consensus.workspace = true
alloy-rlp.workspace = true
alloy-provider.workspace = true
alloy-transport-http.workspace = true
alloy-rpc-client.workspace = true
alloy-rpc-types = { workspace = true, features = ["eth"] }
alloy-primitives = { workspace = true, features = ["serde"] }
op-alloy-genesis = { workspace = true, features = ["std", "serde"] }
op-alloy-protocol = { workspace = true, features = ["std", "serde"] }
revm = { workspace = true, features = ["std", "c-kzg", "secp256k1", "portable", "blst"] }
# General
anyhow.workspace = true
tracing.workspace = true
async-trait.workspace = true
reqwest.workspace = true
tokio.workspace = true
futures.workspace = true
clap.workspace = true
serde.workspace = true
serde_json.workspace = true
tracing-subscriber.workspace = true
command-fds.workspace = true
os_pipe.workspace = true
rocksdb.workspace = true
[dev-dependencies]
proptest.workspace = true