pallet-scheduler 12.0.0

FRAME Scheduler pallet
Documentation
[package]
name = "pallet-scheduler"
version = "12.0.0"
authors = ["Parity Technologies <admin@parity.io>"]
edition = "2021"
license = "Apache-2.0"
homepage = "https://substrate.io"
repository = "https://github.com/paritytech/substrate/"
description = "FRAME Scheduler pallet"
readme = "README.md"

[dependencies]
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }
log = { version = "0.4.17", default-features = false }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
frame-benchmarking = { version = "11.0.0", default-features = false, optional = true}
frame-support = { version = "11.0.0", default-features = false}
frame-system = { version = "11.0.0", default-features = false}
sp-io = { version = "12.0.0", default-features = false}
sp-runtime = { version = "13.0.0", default-features = false}
sp-std = { version = "6.0.0", default-features = false}
sp-weights = { version = "9.0.0", default-features = false}

[dev-dependencies]
pallet-preimage = { version = "11.0.0" }
sp-core = { version = "11.0.0", default-features = false}
substrate-test-utils = { path = "../../test-utils" }

[features]
default = ["std"]
runtime-benchmarks = [
	"frame-benchmarking",
	"frame-support/runtime-benchmarks",
	"frame-system/runtime-benchmarks",
]
std = [
	"codec/std",
	"frame-benchmarking?/std",
	"frame-support/std",
	"frame-system/std",
	"log/std",
	"scale-info/std",
	"sp-io/std",
	"sp-runtime/std",
	"sp-std/std",
	"sp-weights/std",
]
try-runtime = ["frame-support/try-runtime"]