[package] name = "pallet-scheduler" version = "29.0.0" authors.workspace = true edition.workspace = true license = "Apache-2.0" homepage.workspace = true repository.workspace = true description = "FRAME Scheduler pallet" readme = "README.md" [lints] workspace = true [dependencies] codec = { features = ["derive"], workspace = true } docify = { workspace = true } frame-benchmarking = { optional = true, workspace = true } frame-support = { workspace = true } frame-system = { workspace = true } log = { workspace = true } scale-info = { features = ["derive"], workspace = true } sp-io = { workspace = true } sp-runtime = { workspace = true } sp-weights = { workspace = true } [dev-dependencies] pallet-preimage = { workspace = true, default-features = true } sp-core = { workspace = true, default-features = true } substrate-test-utils = { workspace = true } [features] default = ["std"] runtime-benchmarks = [ "frame-benchmarking", "frame-benchmarking/runtime-benchmarks", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", "pallet-preimage/runtime-benchmarks", "sp-io/runtime-benchmarks", "sp-runtime/runtime-benchmarks", ] std = [ "codec/std", "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "log/std", "pallet-preimage/std", "scale-info/std", "sp-core/std", "sp-io/std", "sp-runtime/std", "sp-weights/std", ] try-runtime = [ "frame-support/try-runtime", "frame-system/try-runtime", "pallet-preimage/try-runtime", "sp-runtime/try-runtime", ]