forked from ethereum-optimism/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (59 loc) · 1.86 KB
/
Cargo.toml
File metadata and controls
67 lines (59 loc) · 1.86 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
[package]
name = "kona-engine"
description = "An implementation of the OP Stack engine client"
version = "0.1.2"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
# workspace
kona-genesis.workspace = true
kona-macros.workspace = true
kona-protocol = {workspace = true, features = ["serde", "std"]}
# alloy
alloy-eips.workspace = true
alloy-consensus.workspace = true
alloy-network.workspace = true
alloy-transport.workspace = true
alloy-primitives.workspace = true
alloy-provider = { workspace = true, features = ["ipc", "reqwest", "reqwest-rustls-tls", "engine-api"] }
alloy-rpc-client.workspace = true
alloy-rpc-types-eth.workspace = true
alloy-rpc-types-engine = { workspace = true, features = ["jwt", "serde"] }
alloy-transport-http = { workspace = true, features = ["reqwest", "hyper", "jwt-auth"] }
# op-alloy
op-alloy-network.workspace = true
op-alloy-consensus.workspace = true
op-alloy-provider.workspace = true
op-alloy-rpc-types.workspace = true
op-alloy-rpc-types-engine.workspace = true
# general
serde.workspace = true
tokio.workspace = true
tracing.workspace = true
async-trait.workspace = true
thiserror.workspace = true
url.workspace = true
tower.workspace = true
http-body-util.workspace = true
derive_more = { workspace = true, features = ["display", "deref", "from_str", "constructor"] }
serde_json.workspace = true
# metrics
metrics = { workspace = true, optional = true }
[dev-dependencies]
kona-registry.workspace = true
rand = {workspace = true, features = ["thread_rng"]}
arbitrary.workspace = true
op-alloy-rpc-types = {workspace = true, features = ["arbitrary", "k256"]}
metrics-exporter-prometheus.workspace = true
rstest.workspace = true
[features]
metrics = [ "dep:metrics" ]
test-utils = [
"kona-protocol/test-utils",
"alloy-primitives/rand",
]