1[package]2name = "pallet-unq-scheduler"3version = "0.1.0"4authors = ["Unique Network <support@uniquenetwork.io>"]5edition = "2021"6license = "GPLv3"7homepage = "https://unique.network"8repository = "https://github.com/UniqueNetwork/unique-chain"9description = "Unique Scheduler pallet"10readme = "README.md"1112[dependencies]13serde = { version = "1.0.130", default-features = false }14codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false }15scale-info = { version = "2.0.1", default-features = false, features = [16 "derive",17] }18frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }19frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }20sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }21sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }22sp-io = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }23frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }2425up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/uniquenetwork/pallet-sponsoring", branch = "polkadot-v0.9.21" }26log = { version = "0.4.14", default-features = false }2728[dev-dependencies]29sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }30substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.21" }3132[features]33default = ["std"]34std = [35 "codec/std",36 "sp-runtime/std",37 "frame-benchmarking/std",38 "frame-support/std",39 "frame-system/std",40 "up-sponsorship/std",41 "sp-io/std",42 "sp-std/std",43 "log/std",44]45runtime-benchmarks = [46 "frame-benchmarking",47 "frame-support/runtime-benchmarks",48 "frame-system/runtime-benchmarks",49]50