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" }14codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false }15frame-support = { default-features = false, version = '3.0.0' }16frame-system = { default-features = false, version = '3.0.0' }17pallet-nft-transaction-payment = { default-features = false, path = "../nft-transaction-payment" }18pallet-nft = { default-features = false, path = "../nft" }19nft-data-structs = { path = '../../primitives', default-features = false }2021pallet-contracts = { default-features = false, version = '3.0.0' }22sp-runtime = { default-features = false, version = '3.0.0' }23sp-std = { default-features = false, version = '3.0.0' }24sp-io = { default-features = false, version = '3.0.0' }25log = { version = "0.4.14", default-features = false }2627frame-benchmarking = { default-features = false, version = '3.0.0', optional = true }2829[dev-dependencies]30sp-core = { default-features = false, version = '3.0.0' }31substrate-test-utils = { version = "3.0.0" }3233[features]34default = ["std"]35std = [36 "codec/std",37 "sp-runtime/std",38 "frame-benchmarking/std",39 "frame-support/std",40 "frame-system/std",41 "pallet-nft-transaction-payment/std",42 "pallet-nft/std",43 "pallet-contracts/std",44 "nft-data-structs/std",45 "sp-io/std",46 "sp-std/std",47 "log/std",48]49runtime-benchmarks = [50 "frame-benchmarking",51 "frame-support/runtime-benchmarks",52 "frame-system/runtime-benchmarks",53]54