Skip to content

Commit

Permalink
cargo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Szegoo committed Apr 19, 2024
1 parent 2879a51 commit 4751224
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,5 @@ ismp-testsuite = { git="https://github.com/polytope-labs/hyperbridge.git", branc

# Local
regionx-primitives = { path = "./runtime/primitives", default-features = false }
regionx-runtime = { path = "./runtime/regionx" }
regionx-runtime = { path = "./runtime/regionx", default-features = false }
pallet-regions = { path = "./pallets/regions", default-features = false }
4 changes: 4 additions & 0 deletions pallets/regions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,14 @@ std = [
"ismp/std",
"ismp-parachain/std",
"scale-info/std",
"sp-io/std",
"sp-core/std",
"sp-runtime/std",
"frame-benchmarking/std",
"frame-support/std",
"frame-system/std",
"pallet-balances/std",
"pallet-broker/std",
"pallet-ismp/std",
"pallet-utility/std"
]
Expand Down
6 changes: 4 additions & 2 deletions runtime/regionx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ std = [
"cumulus-pallet-xcmp-queue/std",
"cumulus-primitives-core/std",
"cumulus-primitives-utility/std",
"cumulus-primitives-timestamp/std",
"pallet-ismp/std",
"pallet-ismp-runtime-api/std",
"ismp/std",
Expand All @@ -116,6 +117,7 @@ std = [
"frame-try-runtime?/std",
"log/std",
"orml-asset-registry/std",
"orml-traits/std",
"pallet-assets/std",
"pallet-aura/std",
"pallet-authorship/std",
Expand Down Expand Up @@ -174,7 +176,7 @@ runtime-benchmarks = [
"pallet-balances/runtime-benchmarks",
"pallet-collator-selection/runtime-benchmarks",
"pallet-message-queue/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
"pallet-multisig/runtime-benchmarks",
"pallet-proxy/runtime-benchmarks",
"pallet-regions/runtime-benchmarks",
"pallet-sudo/runtime-benchmarks",
Expand Down Expand Up @@ -209,7 +211,7 @@ try-runtime = [
"pallet-balances/try-runtime",
"pallet-collator-selection/try-runtime",
"pallet-message-queue/try-runtime",
"pallet-multisig/try-runtime",
"pallet-multisig/try-runtime",
"pallet-proxy/try-runtime",
"pallet-regions/try-runtime",
"pallet-session/try-runtime",
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "stable"
channel = "nightly-2024-03-10"
components = [ "rustfmt", "clippy" ]
targets = [ "wasm32-unknown-unknown"]
profile = "minimal"

0 comments on commit 4751224

Please sign in to comment.