1[package]2name = "pallet-unique-scheduler-v2"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]13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }14log = { version = "0.4.17", default-features = false }15scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }16frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }17frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }18frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }19sp-io = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }20sp-runtime = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }21sp-std = { version = "4.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }22sp-core = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }2324[dev-dependencies]25pallet-preimage = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }26sp-core = { version = "6.0.0", default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }27substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }2829[features]30default = ["std"]31runtime-benchmarks = [32 "frame-benchmarking",33 "frame-support/runtime-benchmarks",34 "frame-system/runtime-benchmarks",35]36std = [37 "codec/std",38 "frame-benchmarking?/std",39 "frame-support/std",40 "frame-system/std",41 "log/std",42 "scale-info/std",43 "sp-io/std",44 "sp-runtime/std",45 "sp-std/std",46 "sp-core/std",47]48try-runtime = ["frame-support/try-runtime"]