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]13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive"] }14scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }1516frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2021[features]22default = ["std"]23runtime-benchmarks = ["frame-benchmarking", "frame-support/runtime-benchmarks", "frame-system/runtime-benchmarks"]24std = ["codec/std", "frame-benchmarking/std", "frame-support/std", "frame-system/std", "scale-info/std", "sp-std/std"]25try-runtime = ["frame-support/try-runtime"]