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.27" }14frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }15sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }17sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }18sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.27" }19fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.27" }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]