git.delta.rocks / unique-network / refs/commits / bce2cc1e9ab8

difftreelog

source

pallets/configuration/Cargo.toml984 Bsourcehistory
1[package]2edition = "2021"3name = "pallet-configuration"4version = "0.2.0"56[dependencies]7# Note: `package = "parity-scale-codec"` must be supplied since the `Encode` macro searches for it.8codec = { 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-io = { workspace = true }19sp-std = { workspace = true }20up-common = { workspace = true }21xcm = { workspace = true }2223hex-literal = { workspace = true }2425[features]26default = ["std"]27runtime-benchmarks = ["frame-benchmarking"]28std = [29	"codec/std",30	"fp-evm/std",31	"frame-benchmarking/std",32	"frame-support/std",33	"frame-system/std",34	"sp-arithmetic/std",35	"sp-core/std",36	"sp-std/std",37]38try-runtime = ["frame-support/try-runtime"]