forked from paradigmxyz/reth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 831 Bytes
/
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
[package]
name = "examples"
version = "0.0.0"
publish = false
edition.workspace = true
license.workspace = true
[dev-dependencies]
reth-primitives.workspace = true
reth-db.workspace = true
reth-provider.workspace = true
reth-rpc-builder.workspace = true
reth-rpc-types.workspace = true
reth-rpc-types-compat.workspace = true
reth-revm.workspace = true
reth-blockchain-tree.workspace = true
reth-beacon-consensus.workspace = true
reth-network-api.workspace = true
reth-network.workspace = true
reth-transaction-pool.workspace = true
reth-tasks.workspace = true
eyre.workspace = true
futures.workspace = true
async-trait.workspace = true
tokio.workspace = true
[[example]]
name = "db-access"
path = "db-access.rs"
[[example]]
name = "network"
path = "network.rs"
[[example]]
name = "network-txpool"
path = "network-txpool.rs"