forked from celo-org/kona
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (66 loc) · 2.07 KB
/
Cargo.toml
File metadata and controls
75 lines (66 loc) · 2.07 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
[package]
name = "kona-executor"
description = "A no_std stateless block builder for the OP Stack"
version = "0.4.0"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
# Workspace
kona-mpt.workspace = true
kona-genesis = { workspace = true, features = ["revm"] }
kona-protocol.workspace = true
# Alloy
alloy-consensus = { workspace = true, features = ["k256"] }
alloy-primitives = { workspace = true, features = ["rlp"] }
alloy-eips.workspace = true
alloy-rlp.workspace = true
alloy-trie.workspace = true
# Op Alloy
op-alloy-consensus.workspace = true
op-alloy-rpc-types-engine = { workspace = true, features = ["serde", "k256"] }
alloy-op-hardforks.workspace = true
# revm
op-revm.workspace = true
revm.workspace = true
# alloy-evm
alloy-op-evm.workspace = true
alloy-evm = { workspace = true, features = ["op"] }
# General
thiserror.workspace = true
tracing.workspace = true
# `test-utils` feature
rand = { workspace = true, optional = true }
serde_json = { workspace = true, optional = true }
serde = { workspace = true, features = ["derive"], optional = true }
tokio = { workspace = true, features = ["full"], optional = true }
rstest = { workspace = true, optional = true }
kona-registry = { workspace = true, optional = true }
rocksdb = { workspace = true, features = ["snappy"], optional = true }
tempfile = { workspace = true, optional = true }
alloy-rpc-types-engine = { workspace = true, optional = true }
alloy-provider = { workspace = true, features = ["reqwest"], optional = true }
alloy-rpc-client = { workspace = true, optional = true }
alloy-transport = { workspace = true, optional = true }
alloy-transport-http = { workspace = true, optional = true }
[features]
test-utils = [
"dep:alloy-provider",
"dep:alloy-rpc-client",
"dep:alloy-rpc-types-engine",
"dep:alloy-transport",
"dep:alloy-transport-http",
"dep:kona-registry",
"dep:rand",
"dep:rocksdb",
"dep:rstest",
"dep:serde",
"dep:serde_json",
"dep:tempfile",
"dep:tokio",
"kona-protocol/test-utils",
]