[package] name = "xcm-simulator-fuzzer" description = "Examples of xcm-simulator usage." version.workspace = true authors.workspace = true edition.workspace = true [dependencies] codec = { package = "parity-scale-codec", version = "3.6.1" } honggfuzz = "0.5.55" arbitrary = "1.2.0" scale-info = { version = "2.5.0", features = ["derive"] } frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" } frame-support = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "master" } pallet-message-queue = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-std = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" } sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" } xcm = { path = "../../" } xcm-simulator = { path = "../" } xcm-executor = { path = "../../xcm-executor" } xcm-builder = { path = "../../xcm-builder" } pallet-xcm = { path = "../../pallet-xcm" } polkadot-core-primitives = { path = "../../../core-primitives" } polkadot-runtime-parachains = { path = "../../../runtime/parachains" } polkadot-parachain = { path = "../../../parachain" } [features] runtime-benchmarks = [ "pallet-xcm/runtime-benchmarks", "pallet-message-queue/runtime-benchmarks", "xcm-builder/runtime-benchmarks", "frame-support/runtime-benchmarks", ] [[bin]] path = "src/fuzz.rs" name = "xcm-fuzzer"