mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-19 15:51:04 +00:00
e5f65865fe
* Add improved XCM fuzzer * Add command for running a single input * Add installation command * Fix @m-cat's nit * Add newline Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com> * Add info about current directory in fuzzing README * Update Cargo.lock --------- Co-authored-by: Keith Yeung <kungfukeith11@gmail.com> Co-authored-by: Kian Paimani <5588131+kianenigma@users.noreply.github.com>
41 lines
1.5 KiB
TOML
41 lines
1.5 KiB
TOML
[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.3.0" }
|
|
honggfuzz = "0.5.55"
|
|
arbitrary = "1.2.0"
|
|
scale-info = { version = "2.1.2", 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" }
|
|
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",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
]
|
|
|
|
[[bin]]
|
|
path = "src/fuzz.rs"
|
|
name = "xcm-fuzzer"
|