mirror of
https://github.com/pezkuwichain/pezkuwi-runtime-templates.git
synced 2026-06-13 21:01:02 +00:00
d839cbd92b
Applied global changes: Polkadot->Pezkuwi, Parachain->TeyrChain, pallet->pezpallet, frame->pezframe. Updated authors in Cargo.toml to include Kurdistan Tech Institute and pezkuwichain team. Used Cargo aliases to maintain SDK compatibility while using rebranded names in source code.
80 lines
2.1 KiB
TOML
80 lines
2.1 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 }
|
|
|
|
evm-runtime-template = { path = "../runtime" }
|
|
teyrchains-common = { workspace = true }
|
|
|
|
parity-scale-codec = { workspace = true }
|
|
|
|
pezframe-support = { workspace = true }
|
|
pezframe-system = { workspace = true }
|
|
|
|
sp-consensus-aura = { workspace = true }
|
|
sp-runtime = { workspace = true }
|
|
sp-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 }
|
|
|
|
cumulus-pezpallet-teyrchain-system = { workspace = true }
|
|
cumulus-primitives-core = { workspace = true }
|
|
cumulus-primitives-teyrchain-inherent = { workspace = true }
|
|
cumulus-test-relay-sproof-builder = { workspace = true }
|
|
|
|
[features]
|
|
default = [ "std", "try-runtime" ]
|
|
std = [
|
|
"evm-runtime-template/std",
|
|
"pezframe-support/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",
|
|
"sp-consensus-aura/std",
|
|
"sp-runtime/std",
|
|
]
|
|
tanssi = []
|
|
try-runtime = [
|
|
"evm-runtime-template/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/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",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
|
|
[lints]
|
|
workspace = true
|