mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-09 08:18:04 +00:00
a33d7922f8
* Rename `polkadot-parachain` to `polkadot-parachain-primitives` While doing this it also fixes some last `rustdoc` issues and fixes another Cargo warning related to `pallet-paged-list`. * Fix compilation * ".git/.scripts/commands/fmt/fmt.sh" * Fix XCM docs --------- Co-authored-by: command-bot <>
23 lines
663 B
TOML
23 lines
663 B
TOML
[package]
|
|
name = "pallet-paged-list-fuzzer"
|
|
version = "0.1.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license = "Apache-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository.workspace = true
|
|
description = "Fuzz storage types of pallet-paged-list"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "pallet-paged-list-fuzzer"
|
|
path = "src/paged_list.rs"
|
|
|
|
[dependencies]
|
|
arbitrary = "1.3.0"
|
|
honggfuzz = "0.5.49"
|
|
|
|
frame-support = { path = "../../support", default-features = false, features = [ "std" ]}
|
|
sp-io = { path = "../../../primitives/io", default-features = false, features = [ "std" ] }
|
|
pallet-paged-list = { path = "..", default-features = false, features = [ "std" ] }
|