-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (39 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
49 lines (39 loc) · 1.16 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
[package]
name = "ev-dev"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
description = "One-command local dev chain for ev-reth"
[[bin]]
name = "ev-dev"
path = "src/main.rs"
[dependencies]
# Core evolve crates
ev-node = { path = "../../crates/node" }
ev-deployer = { path = "../ev-deployer" }
evolve-ev-reth = { path = "../../crates/evolve" }
# Reth CLI and core dependencies
reth-cli-util.workspace = true
reth-ethereum-cli.workspace = true
# Alloy dependencies
alloy-signer-local.workspace = true
alloy-primitives.workspace = true
# Core dependencies
eyre.workspace = true
tracing.workspace = true
tokio = { workspace = true, features = ["full"] }
clap = { workspace = true, features = ["derive", "env"] }
tempfile.workspace = true
serde_json.workspace = true
[lints]
workspace = true
[features]
default = ["jemalloc"]
jemalloc = ["reth-cli-util/jemalloc", "reth-ethereum-cli/jemalloc"]
jemalloc-prof = ["reth-cli-util/jemalloc-prof"]
tracy-allocator = ["reth-cli-util/tracy-allocator"]
asm-keccak = ["reth-ethereum-cli/asm-keccak"]
dev = ["reth-ethereum-cli/dev"]