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

difftreelog

source

test-pallets/utils/Cargo.toml638 Bsourcehistory
1[package]2edition = "2021"3license = "GPLv3"4name = "pallet-test-utils"5publish = false6version = "0.1.0"78[dependencies]9# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.10codec = { workspace = true, package = "parity-scale-codec" }1112frame-support = { workspace = true }13frame-system = { workspace = true }14scale-info = { workspace = true }15sp-std = { workspace = true }1617[features]18default = ["std"]19std = [20	"codec/std",21	"frame-support/std",22	"frame-system/std",23	"scale-info/std",24	"sp-std/std",25]26try-runtime = ["frame-support/try-runtime", "pallet-unique-scheduler-v2/try-runtime"]