1[package]2name = "pallet-configuration"3version = "0.1.2"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.36" }14frame-system = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }15frame-benchmarking = { default-features = false, optional = true, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }20fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }21smallvec = "1.6.1"22xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }2324[features]25default = ["std"]26runtime-benchmarks = ["frame-benchmarking"]27std = [28 "parity-scale-codec/std",29 "frame-support/std",30 "frame-system/std",31 "frame-benchmarking/std",32 "sp-runtime/std",33 "sp-std/std",34 "sp-core/std",35 "sp-arithmetic/std",36 "fp-evm/std",37]38try-runtime = ["frame-support/try-runtime"]