git.delta.rocks / unique-network / refs/commits / a1111d463a85

difftreelog

source

pallets/maintenance/Cargo.toml1.3 KiBsourcehistory
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 = ["derive"] }14scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }15frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }16frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }17frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }18sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.33" }1920[features]21default = ["std"]22std = [23	"codec/std",24	"scale-info/std",25	"frame-support/std",26	"frame-system/std",27	"frame-benchmarking/std",28	"sp-std/std",29]30runtime-benchmarks = [31	"frame-benchmarking",32	"frame-support/runtime-benchmarks",33	"frame-system/runtime-benchmarks",34]35try-runtime = ["frame-support/try-runtime"]