1[package]2edition = "2021"3name = "pallet-configuration"4version = "0.1.3"56[dependencies]78codec = { workspace = true, package = "parity-scale-codec" }910fp-evm = { workspace = true }11frame-benchmarking = { workspace = true, optional = true }12frame-support = { workspace = true }13frame-system = { workspace = true }14scale-info = { workspace = true }15smallvec = { workspace = true }16sp-arithmetic = { workspace = true }17sp-core = { workspace = true }18sp-std = { workspace = true }19xcm = { workspace = true }2021[features]22default = ["std"]23runtime-benchmarks = ["frame-benchmarking"]24std = [25 "fp-evm/std",26 "frame-benchmarking/std",27 "frame-support/std",28 "frame-system/std",29 "codec/std",30 "sp-arithmetic/std",31 "sp-core/std",32 "sp-std/std",33]34try-runtime = ["frame-support/try-runtime"]