1[package]2name = "pallet-unq-scheduler"3version = "0.1.0"4authors = ["Unique Network <support@uniquenetwork.io>"]5edition = "2021"6license = "All Rights Reserved"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 = "2.3.0", default-features = false }15scale-info = { version = "1.0.0", default-features = false, features = ["derive"] }16frame-support = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }17frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }18sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }19sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }20sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }21frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }2223up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.16' }24log = { version = "0.4.14", default-features = false }2526[dev-dependencies]27sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }28substrate-test-utils = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.16' }2930[features]31default = ["std"]32std = [33 "codec/std",34 "sp-runtime/std",35 "frame-benchmarking/std",36 "frame-support/std",37 "frame-system/std",38 "up-sponsorship/std",39 "sp-io/std",40 "sp-std/std",41 "log/std",42]43runtime-benchmarks = [44 "frame-benchmarking",45 "frame-support/runtime-benchmarks",46 "frame-system/runtime-benchmarks",47]48