1[package]2edition = "2021"3name = "pallet-configuration"4version = "0.2.0"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 }19sp-io = { workspace = true }20xcm = { workspace = true }2122hex-literal = { workspace = true }2324[features]25default = ["std"]26runtime-benchmarks = ["frame-benchmarking"]27std = [28 "codec/std",29 "fp-evm/std",30 "frame-benchmarking/std",31 "frame-support/std",32 "frame-system/std",33 "sp-arithmetic/std",34 "sp-core/std",35 "sp-std/std",36]37try-runtime = ["frame-support/try-runtime"]