1[package]2authors = ["Unique Network <support@uniquenetwork.io>"]3description = "Unique Scheduler pallet"4edition = "2021"5homepage = "https://unique.network"6license = "GPLv3"7name = "pallet-unique-scheduler-v2"8readme = "README.md"9repository = "https://github.com/UniqueNetwork/unique-chain"10version = "0.1.0"1112[dependencies]1314codec = { workspace = true, package = "parity-scale-codec" }1516frame-benchmarking = { workspace = true, optional = true }17frame-support = { workspace = true }18frame-system = { workspace = true }19log = { workspace = true }20scale-info = { workspace = true }21sp-core = { workspace = true }22sp-io = { workspace = true }23sp-runtime = { workspace = true }24sp-std = { workspace = true }2526[dev-dependencies]27pallet-preimage = { workspace = true }28substrate-test-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.43" }2930[features]31default = ["std"]32runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]33std = [34 "codec/std",35 "frame-benchmarking?/std",36 "frame-support/std",37 "frame-system/std",38 "log/std",39 "scale-info/std",40 "sp-core/std",41 "sp-io/std",42 "sp-runtime/std",43 "sp-std/std",44]45try-runtime = ["frame-support/try-runtime"]