diff --git a/libs/types/Cargo.toml b/libs/types/Cargo.toml index 5c2e86eeb0..f96a4a7ead 100644 --- a/libs/types/Cargo.toml +++ b/libs/types/Cargo.toml @@ -32,7 +32,6 @@ cfg-primitives = { path = "../primitives", default-features = false } cfg-traits = { path = "../traits", default-features = false } cfg-utils = { path = "../utils", default-features = false } - [dev-dependencies] frame-support = { git = "https://github.com/paritytech/substrate", default-features = true, branch = "polkadot-v0.9.43" } hex = { version = "0.4.3", default_features = false } diff --git a/pallets/restricted-xtokens/Cargo.toml b/pallets/restricted-xtokens/Cargo.toml index d1389cf186..ddc31d548e 100644 --- a/pallets/restricted-xtokens/Cargo.toml +++ b/pallets/restricted-xtokens/Cargo.toml @@ -18,8 +18,8 @@ frame-system = { workspace = true } sp-std = { workspace = true } # orml -orml-xtokens = { workspace = true } orml-traits = { workspace = true } +orml-xtokens = { workspace = true } # polkadot xcm = { workspace = true } @@ -30,27 +30,27 @@ cfg-traits = { workspace = true } [features] default = ["std"] std = [ - "serde", - "codec/std", - "sp-std/std", - "cfg-traits/std", - "frame-support/std", - "frame-system/std", - "scale-info/std", - "orml-xtokens/std", - "orml-traits/std", - "xcm/std" + "serde", + "codec/std", + "sp-std/std", + "cfg-traits/std", + "frame-support/std", + "frame-system/std", + "scale-info/std", + "orml-xtokens/std", + "orml-traits/std", + "xcm/std", ] runtime-benchmarks = [ - "cfg-traits/runtime-benchmarks", - "frame-support/runtime-benchmarks", - "frame-system/runtime-benchmarks", - "orml-xtokens/runtime-benchmarks", + "cfg-traits/runtime-benchmarks", + "frame-support/runtime-benchmarks", + "frame-system/runtime-benchmarks", + "orml-xtokens/runtime-benchmarks", ] try-runtime = [ - "cfg-traits/try-runtime", - "frame-support/try-runtime", - "frame-system/try-runtime", - "orml-xtokens/try-runtime", + "cfg-traits/try-runtime", + "frame-support/try-runtime", + "frame-system/try-runtime", + "orml-xtokens/try-runtime", ]