forked from risechain/pevm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
62 lines (54 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
[package]
name = "pevm"
version = "0.1.0"
edition = "2021"
[dependencies]
# Put this behind a feature flag if there are use cases & users
# that need more security guarantees even for internally hashing
# EVM memory locations (we do not persist these hashes).
ahash = { version = "0.8.11", features = ["serde"] }
alloy-chains = "0.1.25"
alloy-consensus = "0.2.1"
alloy-primitives = { version = "0.7.7", features = ["asm-keccak"] }
alloy-rlp = "0.3.7"
alloy-rpc-types = "0.2.1"
alloy-trie = "0.4.1"
bitvec = "1.0.1"
dashmap = "6.0.1"
defer-drop = "1.3.0"
serde = "1.0.204"
# Let's do our best to port needed REVM changes upstream
revm = { git = "https://github.com/risechain/revm", rev = "7b42abb672deacde9e0538e8e74209e1943dabff", features = [
"serde",
] }
# RPC Storage dependencies
# TODO: Put these behind an RPC flag to not pollute the core
# library with RPC network & transport dependencies, etc.
alloy-provider = "0.2.1"
alloy-transport = "0.2.1"
alloy-transport-http = "0.2.1"
reqwest = "0.12.5"
tokio = { version = "1.39.2", features = ["rt-multi-thread"] }
[dev-dependencies]
bincode = "1.3.3"
criterion = "0.5.1"
rand = "0.8.5"
rayon = "1.10.0"
revme = { git = "https://github.com/risechain/revm", rev = "7b42abb672deacde9e0538e8e74209e1943dabff" }
rpmalloc = { version = "0.2.2", features = ["thread_cache", "global_cache"] }
serde_json = "1.0.122"
walkdir = "2.5.0"
[lints]
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
[[bench]]
name = "mainnet"
harness = false
[[bench]]
name = "gigagas"
harness = false
[profile.release]
codegen-units = 1
panic = "abort"
lto = "fat"