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" }15sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }16sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }17sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }18sp-arithmetic = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }19fp-evm = { default-features = false, git = "https://github.com/uniquenetwork/frontier", branch = "unique-polkadot-v0.9.36" }20smallvec = "1.6.1"21xcm = { default-features = false, git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.36" }2223[features]24default = ["std"]25std = [26 "parity-scale-codec/std",27 "frame-support/std",28 "frame-system/std",29 "sp-runtime/std",30 "sp-std/std",31 "sp-core/std",32 "sp-arithmetic/std",33 "fp-evm/std",34]35try-runtime = ["frame-support/try-runtime"]