diff --git a/runtime/battery-station/Cargo.toml b/runtime/battery-station/Cargo.toml index 5f2ef2708..035b69562 100644 --- a/runtime/battery-station/Cargo.toml +++ b/runtime/battery-station/Cargo.toml @@ -215,6 +215,7 @@ runtime-benchmarks = [ "sp-runtime/runtime-benchmarks", "xcm-builder?/runtime-benchmarks", "zrml-authorized/runtime-benchmarks", + "zrml-combo/runtime-benchmarks", "zrml-court/runtime-benchmarks", "zrml-hybrid-router/runtime-benchmarks", "zrml-neo-swaps/runtime-benchmarks", @@ -383,6 +384,7 @@ try-runtime = [ # Zeitgeist runtime pallets "zrml-authorized/try-runtime", + "zrml-combo/try-runtime", "zrml-court/try-runtime", "zrml-hybrid-router/try-runtime", "zrml-market-commons/try-runtime", diff --git a/runtime/zeitgeist/Cargo.toml b/runtime/zeitgeist/Cargo.toml index 0baae069f..7d7aa5360 100644 --- a/runtime/zeitgeist/Cargo.toml +++ b/runtime/zeitgeist/Cargo.toml @@ -212,6 +212,7 @@ runtime-benchmarks = [ "sp-runtime/runtime-benchmarks", "xcm-builder?/runtime-benchmarks", "zrml-authorized/runtime-benchmarks", + "zrml-combo/runtime-benchmarks", "zrml-court/runtime-benchmarks", "zrml-hybrid-router/runtime-benchmarks", "zrml-neo-swaps/runtime-benchmarks", @@ -371,6 +372,7 @@ try-runtime = [ # Zeitgeist runtime pallets "zrml-authorized/try-runtime", + "zrml-combo/try-runtime", "zrml-court/try-runtime", "zrml-hybrid-router/try-runtime", "zrml-market-commons/try-runtime", diff --git a/zrml/combo/Cargo.toml b/zrml/combo/Cargo.toml index f385b296e..5a182a122 100644 --- a/zrml/combo/Cargo.toml +++ b/zrml/combo/Cargo.toml @@ -8,12 +8,20 @@ sp-runtime = { workspace = true } [features] default = ["std"] +runtime-benchmarks = [ + "frame-benchmarking/runtime-benchmarks", + "frame-support/runtime-benchmarks", + "frame-system/runtime-benchmarks", +] std = [ "frame-benchmarking?/std", "frame-support/std", "frame-system/std", "sp-runtime/std", ] +try-runtime = [ + "frame-support/try-runtime", +] [package] authors = ["Zeitgeist PM "]