-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
70 lines (58 loc) · 2.26 KB
/
Cargo.toml
File metadata and controls
70 lines (58 loc) · 2.26 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "evm-proxy-tools"
version = "0.1.0"
edition = "2021"
rust-version = "1.75"
authors = ["snf"]
description = "Detect and read EVM proxy contract implementations (EIP-1167, EIP-1967, EIP-2535, and more)"
license = "MIT"
repository = "https://github.com/snf/evm-proxy-tools"
keywords = ["ethereum", "evm", "proxy", "smart-contracts", "solidity"]
categories = ["cryptography::cryptocurrencies", "development-tools"]
readme = "README.md"
[profile.maxperf]
inherits = "release"
lto = "fat"
codegen-units = 1
incremental = false
[patch.crates-io]
# revm = { git = "https://github.com/bluealloy/revm/", tag = "v26" }
# revm-primitives = { git = "https://github.com/bluealloy/revm/", tag = "v26" }
# revm-interpreter = { git = "https://github.com/bluealloy/revm/", tag = "v26" }
# ruint = { git = "https://github.com/recmo/uint.git", tag = "v1.11.0", features = ["num-traits"] }
[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"]}
anyhow = "1.0"
clap = { version = "4", features = ["derive", "env", "unicode", "wrap_help"] }
num-traits = "0.2"
ruint = { version = "1.11.1", features = ["num-traits"] }
thiserror = "1.0"
twoway = "0.2"
## alloy
alloy = { version = "1.2", default-features = false, features = ["std", "provider-http", "contract", "rpc-types", "sol-types", "reqwest-rustls-tls"] }
alloy-primitives = { version = "1.5.2", features = ["serde"] }
## revm
revm = { version = "33.1.0", default-features = false, features = ["optional_block_gas_limit", "std", "secp256k1"] }
bytes = "1.4"
hex = { version = "0.4", default-features = false, features = ["alloc"] }
hex-literal = "0.4"
once_cell = "1.18"
## async
tokio = { version = "1.32", features = ["rt-multi-thread", "macros"]}
futures = { version = "0.3"}
## crypto
# secp256k1 = { version = "0.27.0", default-features = false, features = [
# "global-context",
# "rand-std",
# "recovery",
# ] }
## coverage
croaring = { version = "1.0", features = ["buildtime_bindgen"]}
# [target.'cfg(not(windows))'.dependencies]
# jemallocator = { version = "0.5", optional = true }
# jemalloc-ctl = { version = "0.5", optional = true }
# [features]
# default = ["jemalloc"]
# jemalloc = ["dep:jemallocator", "dep:jemalloc-ctl"]
# jemalloc-prof = ["jemalloc", "jemallocator?/profiling"]