1[package]2name = "pallet-maintenance"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 Maintenance pallet"10readme = "README.md"1112[dependencies]13codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = [14 "derive",15] }16scale-info = { version = "2.1.1", default-features = false, features = [17 "derive",18] }19frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }21frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }22sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }2324[features]25default = ["std"]26std = [27 "codec/std",28 "scale-info/std",29 "frame-support/std",30 "frame-system/std",31 "frame-benchmarking/std",32 "sp-std/std",33]34runtime-benchmarks = [35 "frame-benchmarking",36 "frame-support/runtime-benchmarks",37 "frame-system/runtime-benchmarks",38]39try-runtime = ["frame-support/try-runtime"]