git.delta.rocks / unique-network / refs/commits / b9bb94b32dcd

difftreelog

source

test-pallets/utils/Cargo.toml542 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-test-utils"5publish = false6version = "0.1.0"78[dependencies]9frame-support = { workspace = true }10frame-system = { workspace = true }11parity-scale-codec = { workspace = true }12scale-info = { workspace = true }13sp-runtime = { workspace = true }14sp-std = { workspace = true }1516[features]17default = ["std"]18std = [19	"frame-support/std",20	"frame-system/std",21	"parity-scale-codec/std",22	"scale-info/std",23	"sp-runtime/std",24	"sp-std/std",25]26try-runtime = ["frame-support/try-runtime"]