-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
39 lines (32 loc) · 1.8 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
[package]
name = "solochain-template-fuzzer"
version = "0.1.0"
edition = "2021"
publish = false
[dependencies]
ziggy = { version = "1.0.2", default-features = false }
solochain-template-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
codec = { version = "3.6.12", features = ["derive", "max-encoded-len"], default-features = false, package = "parity-scale-codec" }
frame-support = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
frame-system = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
sp-state-machine = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
sp-consensus-aura = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
pallet-timestamp = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
pallet-grandpa = { git = "https://github.com/paritytech/polkadot-sdk.git", tag = "polkadot-stable2409-1", default-features = false }
[features]
default = ["std", "try-runtime"]
fuzzing = []
std = [
"solochain-template-runtime/std",
"sp-runtime/std",
"frame-support/std",
"pallet-timestamp/std",
"sp-consensus-aura/std",
]
try-runtime = [
"solochain-template-runtime/try-runtime",
"frame-support/try-runtime",
"pallet-timestamp/try-runtime",
]