[package] name = "pallet-encointer-scheduler" version = "14.1.0" authors = ["Encointer Association "] edition = "2021" description = "Scheduler pallet for the Encointer blockchain runtime" homepage = "https://encointer.org" repository = "https://github.com/encointer/pallets" license = "GPL-3.0-or-later" [dependencies] impl-trait-for-tuples = { workspace = true } log = { workspace = true } parity-scale-codec = { workspace = true } scale-info = { workspace = true } # local deps encointer-primitives = { workspace = true } # substrate deps frame-benchmarking = { workspace = true, optional = true } frame-support = { workspace = true } frame-system = { workspace = true } pallet-timestamp = { workspace = true } sp-runtime = { workspace = true } sp-std = { workspace = true } [dev-dependencies] sp-io = { workspace = true, features = ["std"] } test-utils = { workspace = true } [features] default = ["std"] std = [ "encointer-primitives/std", "frame-support/std", "frame-system/std", "log/std", "pallet-timestamp/std", "parity-scale-codec/std", "scale-info/std", "sp-runtime/std", "sp-std/std", ] runtime-benchmarks = [ "frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks", ] try-runtime = ["frame-system/try-runtime"]