77 lines
2.7 KiB
TOML
77 lines
2.7 KiB
TOML
[package]
|
|
name = "xcm-pez-simulator-fuzzer"
|
|
description = "Examples of xcm-pez-simulator usage."
|
|
version = "1.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
documentation = "https://docs.rs/xcm-pez-simulator-fuzzer"
|
|
repository = { workspace = true }
|
|
homepage = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[[bin]]
|
|
path = "src/fuzz.rs"
|
|
name = "xcm-fuzzer"
|
|
|
|
[dependencies]
|
|
arbitrary = { workspace = true }
|
|
codec = { workspace = true, default-features = true }
|
|
honggfuzz = { workspace = true }
|
|
scale-info = { features = [
|
|
"derive",
|
|
], workspace = true, default-features = true }
|
|
|
|
pezframe-executive = { workspace = true, default-features = true }
|
|
pezframe-support = { workspace = true, default-features = true }
|
|
pezframe-system = { workspace = true, default-features = true }
|
|
pezframe-try-runtime = { workspace = true, default-features = true }
|
|
pezpallet-balances = { workspace = true, default-features = true }
|
|
pezpallet-message-queue = { workspace = true, default-features = true }
|
|
pezsp-core = { workspace = true, default-features = true }
|
|
pezsp-io = { workspace = true, default-features = true }
|
|
pezsp-runtime = { workspace = true, default-features = true }
|
|
|
|
pezpallet-xcm = { workspace = true, default-features = true }
|
|
pezkuwi-core-primitives = { workspace = true, default-features = true }
|
|
pezkuwi-runtime-teyrchains = { workspace = true, default-features = true }
|
|
pezkuwi-teyrchain-primitives = { workspace = true, default-features = true }
|
|
xcm = { workspace = true, default-features = true }
|
|
xcm-builder = { workspace = true, default-features = true }
|
|
xcm-executor = { workspace = true, default-features = true }
|
|
xcm-pez-simulator = { workspace = true, default-features = true }
|
|
|
|
[features]
|
|
try-runtime = [
|
|
"pezframe-executive/try-runtime",
|
|
"pezframe-support/try-runtime",
|
|
"pezframe-system/try-runtime",
|
|
"pezframe-try-runtime/try-runtime",
|
|
"pezpallet-balances/try-runtime",
|
|
"pezpallet-message-queue/try-runtime",
|
|
"pezpallet-xcm/try-runtime",
|
|
"pezkuwi-runtime-teyrchains/try-runtime",
|
|
"pezsp-runtime/try-runtime",
|
|
]
|
|
runtime-benchmarks = [
|
|
"pezframe-executive/runtime-benchmarks",
|
|
"pezframe-support/runtime-benchmarks",
|
|
"pezframe-system/runtime-benchmarks",
|
|
"pezframe-try-runtime/runtime-benchmarks",
|
|
"pezpallet-balances/runtime-benchmarks",
|
|
"pezpallet-message-queue/runtime-benchmarks",
|
|
"pezpallet-xcm/runtime-benchmarks",
|
|
"pezkuwi-core-primitives/runtime-benchmarks",
|
|
"pezkuwi-runtime-teyrchains/runtime-benchmarks",
|
|
"pezkuwi-teyrchain-primitives/runtime-benchmarks",
|
|
"pezsp-io/runtime-benchmarks",
|
|
"pezsp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
"xcm-pez-simulator/runtime-benchmarks",
|
|
"xcm/runtime-benchmarks",
|
|
]
|