forked from paradigmxyz/revm-inspectors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (50 loc) · 1.43 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
[package]
name = "revm-inspectors"
description = "Revm inspector implementations"
version = "0.6.0"
edition = "2021"
rust-version = "1.79.0"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/paradigmxyz/revm-inspectors"
repository = "https://github.com/paradigmxyz/revm-inspectors"
categories = ["cryptography"]
keywords = ["ethereum", "evm", "inspectors", "tracing", "debugging"]
exclude = [
".github",
"scripts",
"testdata",
"tests",
"cliff.toml",
"deny.toml",
"release.toml",
]
[lints]
rust.missing_debug_implementations = "warn"
rust.missing_docs = "warn"
rust.unreachable_pub = "warn"
rust.unused_must_use = "deny"
rust.rust_2018_idioms = "deny"
rustdoc.all = "warn"
clippy.lint_groups_priority = "allow"
[dependencies]
# eth
alloy-rpc-types-eth = "0.3"
alloy-rpc-types-trace = "0.3"
alloy-sol-types = "0.8"
alloy-primitives = "0.8"
# revm = { version = "14", default-features = false, features = ["std"] }
revm = { git = "https://github.com/taikoxyz/revm.git", branch = "v43-gwyneth", default-features = false, features = ["std"] }
anstyle = "1.0"
colorchoice = "1.0"
thiserror = "1.0"
# serde
serde = { version = "1", optional = true, features = ["derive"] }
serde_json = "1.0"
# js-tracer
boa_engine = { version = "0.19", optional = true }
boa_gc = { version = "0.19", optional = true }
[dev-dependencies]
snapbox = "0.6"
[features]
serde = ["dep:serde", "revm/serde"]
js-tracer = ["dep:boa_engine", "dep:boa_gc"]