-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
67 lines (56 loc) · 1.45 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 = "grevm"
version = "0.1.0"
edition = "2021"
description = "Create Parallel EVM"
build = "build.rs"
[dependencies]
revm = { package = "revm", git = "https://github.com/galxe/revm", rev = "a32cd92" }
revm-primitives = { package = "revm-primitives", git = "https://github.com/galxe/revm", rev = "a32cd92" }
fastrace = "0.7"
tracing = "0.1.40"
ahash = { version = "0.8.11", features = ["serde"] }
rayon = "1.10.0"
atomic = "0.6.0"
# Alloy
alloy-chains = "0.1.18"
# async
tokio = { version = "1.39", features = ["sync", "macros", "time", "rt-multi-thread"] }
futures = "0.3"
rand = "0.8.5"
auto_impl = "1"
lazy_static = "1.5.0"
dashmap = "6.0"
# metrics
metrics = "0.23.0"
# small vector
smallvec = "1"
[dev-dependencies]
criterion = "0.5.1"
metrics-util = "0.17.0"
walkdir = "2.5.0"
rayon = "1.10.0"
revme = { package = "revme", git = "https://github.com/galxe/revm", rev = "a32cd92" }
fastrace = { version = "0.7", features = ["enable"] }
fastrace-jaeger = "0.7"
tikv-jemallocator = "0.5.0"
bincode = "1.3.3"
serde_json = "1.0.94"
[lints]
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
[[bench]]
name = "gigagas"
harness = false
[[bench]]
name = "mainnet"
harness = false
[profile.release]
codegen-units = 1
panic = "abort"
lto = "fat"
[features]
update-test-submodule = ["update-submodule-test-data", "update-submodule-ethereum-tests"]
update-submodule-test-data = []
update-submodule-ethereum-tests = []