-
Notifications
You must be signed in to change notification settings - Fork 547
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (30 loc) · 812 Bytes
/
Cargo.toml
File metadata and controls
31 lines (30 loc) · 812 Bytes
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
[package]
name = "fuzz"
version = "0.1.0"
authors.workspace = true
edition.workspace = true
repository.workspace = true
[dependencies]
arbitrary = { version = "1.4.1", features = ["derive"] }
evm = { workspace = true }
frame-system = { workspace = true }
fuzzed_runtime = { path = "../runtime", package = "frontier-template-runtime" }
hex.workspace = true
pallet-balances = { workspace = true }
pallet-evm = { workspace = true }
sp-consensus-aura = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-state-machine = { workspace = true }
ziggy = { version = "1.5.4", default-features = false }
[features]
fuzzing = []
default = ["std"]
std = [
"fuzzed_runtime/std",
"sp-runtime/std",
"sp-state-machine/std",
"sp-consensus-aura/std",
"sp-core/std",
"pallet-evm/std",
]