1[package]2authors = ["Unique Network <support@uniquenetwork.io>"]3description = "Unique Maintenance pallet"4edition = "2021"5homepage = "https://unique.network"6license = "GPLv3"7name = "pallet-maintenance"8readme = "README.md"9repository = "https://github.com/UniqueNetwork/unique-chain"10version = "0.1.0"1112[dependencies]13parity-scale-codec = { workspace = true }14scale-info = { workspace = true }1516frame-benchmarking = { workspace = true, optional = true }17frame-support = { workspace = true }18frame-system = { workspace = true }19sp-core = { workspace = true }20sp-runtime = { workspace = true }21sp-std = { workspace = true }2223[features]24default = ["std"]25runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]26std = [27 "frame-benchmarking/std",28 "frame-support/std",29 "frame-system/std",30 "parity-scale-codec/std",31 "scale-info/std",32 "sp-core/std",33 "sp-runtime/std",34 "sp-std/std",35]36try-runtime = ["frame-support/try-runtime"]