1[package]2name = "pallet-scheduler"3version = "3.0.0"4authors = ["Parity Technologies <admin@parity.io>"]5edition = "2018"6license = "Unlicense"7homepage = "https://substrate.dev"8repository = "https://github.com/paritytech/substrate/"9description = "FRAME example pallet"10readme = "README.md"1112[dependencies]13serde = { version = "1.0.119", default-features = false }14codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }15frame-support = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }16frame-system = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }17sp-runtime = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }18sp-std = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }19sp-io = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }20frame-benchmarking = { default-features = false, version = '3.0.0', optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }2122up-sponsorship = { default-features = false, path = "../../primitives/sponsorship", version = "0.1.0" }23log = { version = "0.4.14", default-features = false }2425[dev-dependencies]26sp-core = { default-features = false, version = '3.0.0', git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }27substrate-test-utils = { version = "3.0.0", git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.8' }2829[features]30default = ["std"]31std = [32 "codec/std",33 "sp-runtime/std",34 "frame-benchmarking/std",35 "frame-support/std",36 "frame-system/std",37 "up-sponsorship/std",38 "sp-io/std",39 "sp-std/std",40 "log/std",41]42runtime-benchmarks = [43 "frame-benchmarking",44 "frame-support/runtime-benchmarks",45 "frame-system/runtime-benchmarks",46]47