mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-06-11 22:21:02 +00:00
81 lines
2.2 KiB
TOML
81 lines
2.2 KiB
TOML
[package]
|
|
name = "template-fuzzer"
|
|
version = "0.1.0"
|
|
[package.authors]
|
|
workspace = true
|
|
[package.description]
|
|
workspace = true
|
|
[package.edition]
|
|
workspace = true
|
|
[package.license]
|
|
workspace = true
|
|
[package.repository]
|
|
workspace = true
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
quinn-proto = { version = "0.9.6", features = [ "arbitrary" ] }
|
|
ziggy = { workspace = true }
|
|
|
|
generic-runtime-template = { path = "../runtime" }
|
|
teyrchains-common = { workspace = true }
|
|
|
|
parity-scale-codec = { workspace = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
|
|
pezsp-consensus-aura = { workspace = true }
|
|
pezsp-runtime = { workspace = true }
|
|
pezsp-state-machine = { workspace = true }
|
|
|
|
pezpallet-balances = { workspace = true }
|
|
pezpallet-collator-selection = { workspace = true }
|
|
pezpallet-multisig = { workspace = true }
|
|
pezpallet-scheduler = { workspace = true }
|
|
pezpallet-sudo = { workspace = true }
|
|
pezpallet-timestamp = { workspace = true }
|
|
pezpallet-utility = { workspace = true }
|
|
pezpallet-whitelist = { workspace = true }
|
|
|
|
pezcumulus-pezpallet-teyrchain-system = { workspace = true }
|
|
pezcumulus-primitives-core = { workspace = true }
|
|
pezcumulus-primitives-teyrchain-inherent = { workspace = true }
|
|
pezcumulus-test-relay-sproof-builder = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std", "try-runtime" ]
|
|
std = [
|
|
"pezframe-support/std",
|
|
"generic-runtime-template/std",
|
|
"pezpallet-collator-selection/std",
|
|
"pezpallet-multisig/std",
|
|
"pezpallet-scheduler/std",
|
|
"pezpallet-sudo/std",
|
|
"pezpallet-timestamp/std",
|
|
"pezpallet-utility/std",
|
|
"pezpallet-whitelist/std",
|
|
"parity-scale-codec/std",
|
|
"pezsp-consensus-aura/std",
|
|
"pezsp-runtime/std",
|
|
]
|
|
fuzzing = []
|
|
tanssi = []
|
|
try-runtime = [
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"generic-runtime-template/try-runtime",
|
|
"pezpallet-collator-selection/try-runtime",
|
|
"pezpallet-multisig/try-runtime",
|
|
"pezpallet-scheduler/try-runtime",
|
|
"pezpallet-sudo/try-runtime",
|
|
"pezpallet-timestamp/try-runtime",
|
|
"pezpallet-utility/try-runtime",
|
|
"pezpallet-whitelist/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|