git.delta.rocks / unique-network / refs/commits / 1d4e56c36dc5

difftreelog

source

pallets/configuration/Cargo.toml1.3 KiBsourcehistory
1[package]2name = "pallet-configuration"3version = "0.1.1"4edition = "2021"56[dependencies]7parity-scale-codec = { version = "3.1.5", features = [8	"derive",9], default-features = false }10scale-info = { version = "2.0.1", default-features = false, features = [11	"derive",12] }13frame-support = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }14frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }15sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }17sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }18sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.30" }19fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.30" }20smallvec = "1.6.1"2122[features]23default = ["std"]24std = [25	"parity-scale-codec/std",26	"frame-support/std",27	"frame-system/std",28	"sp-runtime/std",29	"sp-std/std",30	"sp-core/std",31	"sp-arithmetic/std",32	"fp-evm/std",33]34try-runtime = ["frame-support/try-runtime"]