-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.06 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.06 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
[package]
name = "aurora-evm-jsontests"
version.workspace = true
license = "MIT"
authors.workspace = true
description = "Aurora EVM json tests"
repository.workspace = true
keywords.workspace = true
edition.workspace = true
publish = false
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "deny", priority = -1 }
nursery = { level = "deny", priority = -1 }
[dependencies]
aurora-engine-precompiles = "2.1.0"
aurora-evm.workspace = true
bytecount = "0.6"
clap = { version = "4.5", features = ["cargo"] }
#c-kzg = { version = "1.0", default-features = false, features = ["generate-bindings", "portable", "serde"] }
derive_more = { version = "2", features = ["full"] }
ethereum = "0.18"
hex = "0.4"
hex-literal = "1.1"
libsecp256k1 = "0.7"
primitive-types = { workspace = true, features = ["serde"] }
rlp.workspace = true
sha2 = { version = "0.10.0", default-features = false }
sha3.workspace = true
serde.workspace = true
serde_json = "1.0"
[features]
enable-slow-tests = []
print-debug = ["aurora-evm/print-debug"]
dump-state = ["aurora-evm/with-serde"]