-
Notifications
You must be signed in to change notification settings - Fork 47
/
Cargo.toml
81 lines (73 loc) · 2.04 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[workspace]
default-members = ["crates/pevm"]
members = ["bins/fetch", "crates/pevm"]
resolver = "2"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"
[workspace.lints]
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.rust_2018_idioms = "warn"
rust.unreachable_pub = "warn"
[workspace.lints.clippy]
cloned_instead_of_copied = "warn"
derive_partial_eq_without_eq = "warn"
doc_markdown = "warn"
explicit_iter_loop = "warn"
if_not_else = "warn"
if_then_some_else_none = "warn"
match_same_arms = "warn"
missing_const_for_fn = "warn"
redundant_clone = "warn"
redundant_else = "warn"
type_repetition_in_bounds = "warn"
unnested_or_patterns = "warn"
use_self = "warn"
[workspace.dependencies]
pevm = { path = "crates/pevm", features = ["full"] }
# alloy
alloy-chains = "0.1.46"
alloy-consensus = "0.5.4"
alloy-primitives = { version = "0.8.10", features = [
"asm-keccak",
"map-fxhash",
] }
alloy-provider = "0.5.4"
alloy-rlp = "0.3.9"
alloy-rpc-types-eth = "0.5.4"
alloy-transport = "0.5.4"
alloy-transport-http = "0.5.4"
alloy-trie = "0.7.2"
# Will remove [revm] with https://github.com/risechain/pevm/issues/382.
revm = { git = "https://github.com/risechain/revm", rev = "5c11b33574ce96e3d8df8c3eb1ecc25497438975", features = [
"serde",
] }
revme = { git = "https://github.com/risechain/revm", rev = "5c11b33574ce96e3d8df8c3eb1ecc25497438975" }
# OP
op-alloy-consensus = "0.5.2"
op-alloy-network = "0.5.2"
op-alloy-rpc-types = "0.5.2"
bincode = "1.3.3"
# We can roll our own but [revm] depends on this anyway.
bitflags = "2.6.0"
bitvec = "1.0.1"
clap = { version = "4.5.20", features = ["derive"] }
criterion = "0.5.1"
dashmap = "6.1.0"
flate2 = "1.0.34"
hashbrown = "0.15.1"
rand = "0.8.5"
rayon = "1.10.0"
reqwest = "0.12.9"
rpmalloc = { version = "0.2.2", features = ["thread_cache", "global_cache"] }
rustc-hash = "2.0.0"
serde = "1.0.214"
serde_json = "1.0.132"
smallvec = "1.13.2"
snmalloc-rs = "0.3.6"
thiserror = "1.0.68"
tikv-jemallocator = "0.6.0"
tokio = { version = "1.41.0", features = ["rt-multi-thread"] }
walkdir = "2.5.0"