forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
67 lines (57 loc) · 1.61 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
[package]
name = "reth-rpc-eth-types"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "Types supporting implementation of 'eth' namespace RPC server API"
[lints]
workspace = true
[dependencies]
reth-chainspec.workspace = true
reth-chain-state.workspace = true
reth-errors.workspace = true
reth-evm.workspace = true
reth-execution-types.workspace = true
reth-metrics.workspace = true
reth-primitives = { workspace = true, features = ["secp256k1"] }
reth-storage-api.workspace = true
reth-revm.workspace = true
reth-rpc-server-types.workspace = true
reth-rpc-types-compat.workspace = true
reth-tasks.workspace = true
reth-transaction-pool.workspace = true
reth-trie.workspace = true
# ethereum
alloy-primitives.workspace = true
alloy-consensus.workspace = true
alloy-sol-types.workspace = true
alloy-rpc-types-eth.workspace = true
revm.workspace = true
revm-inspectors.workspace = true
revm-primitives = { workspace = true, features = ["dev"] }
alloy-rpc-types.workspace = true
alloy-serde.workspace = true
alloy-eips.workspace = true
# rpc
jsonrpsee-core.workspace = true
jsonrpsee-types.workspace = true
# async
futures.workspace = true
tokio.workspace = true
tokio-stream.workspace = true
# metrics
metrics.workspace = true
# misc
serde = { workspace = true, features = ["derive"] }
thiserror.workspace = true
derive_more.workspace = true
schnellru.workspace = true
rand.workspace = true
tracing.workspace = true
[dev-dependencies]
serde_json.workspace = true
[features]
js-tracer = ["revm-inspectors/js-tracer"]