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

difftreelog

source

test-pallets/utils/Cargo.toml814 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 }15# pallet-unique-scheduler = { path = '../../pallets/scheduler', default-features = false }16pallet-unique-scheduler-v2 = { workspace = true }17sp-std = { workspace = true }1819[features]20default = ["std"]21std = [22	"codec/std",23	"frame-support/std",24	"frame-system/std",25	"pallet-unique-scheduler-v2/std",26	"scale-info/std",27	"sp-std/std",28]29try-runtime = ["frame-support/try-runtime", "pallet-unique-scheduler-v2/try-runtime"]