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.git', branch = 'polkadot-v0.9.18' }19frame-system = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }20sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }21sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }22sp-io = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }23frame-benchmarking = { default-features = false, optional = true, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }24sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }25up-sponsorship = { version = "0.1.0", default-features = false, git = "https://github.com/UniqueNetwork/pallet-sponsoring", branch = 'polkadot-v0.9.18' }26log = { version = "0.4.14", default-features = false }2728[dev-dependencies]29substrate-test-utils = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18' }3031[features]32default = ["std"]33std = [34 "codec/std",35 "sp-runtime/std",36 "frame-benchmarking/std",37 "frame-support/std",38 "frame-system/std",39 "up-sponsorship/std",40 "sp-io/std",41 "sp-std/std",42 "sp-core/std",43 "log/std",44]45runtime-benchmarks = [46 "frame-benchmarking",47 "frame-support/runtime-benchmarks",48 "frame-system/runtime-benchmarks",49]50