From 50dcb04ef8650b39e4fbcce175de984987327479 Mon Sep 17 00:00:00 2001 From: Sergej Date: Wed, 10 Apr 2024 19:22:02 +0200 Subject: [PATCH] move runtime primitives --- Cargo.toml | 3 +-- {primitives => runtime/primitives}/Cargo.toml | 0 {primitives => runtime/primitives}/src/lib.rs | 0 3 files changed, 1 insertion(+), 2 deletions(-) rename {primitives => runtime/primitives}/Cargo.toml (100%) rename {primitives => runtime/primitives}/src/lib.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 8acfc054..ff8cff2e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,6 @@ resolver = "2" members = [ "node", - "primitives", "pallets/*", "runtime/*", ] @@ -138,6 +137,6 @@ ismp-runtime-api = { git="https://github.com/Szegoo/hyperbridge.git", branch="fi ismp-parachain-runtime-api = { git="https://github.com/Szegoo/hyperbridge.git", branch="fix-try-runtime", default-features = false } # Local -regionx-primitives = { path = "./primitives", default-features = false } +regionx-primitives = { path = "./runtime/primitives", default-features = false } regionx-runtime = { path = "./runtime/regionx", default-features = false } pallet-parachain-template = { path = "./pallets/template", default-features = false } diff --git a/primitives/Cargo.toml b/runtime/primitives/Cargo.toml similarity index 100% rename from primitives/Cargo.toml rename to runtime/primitives/Cargo.toml diff --git a/primitives/src/lib.rs b/runtime/primitives/src/lib.rs similarity index 100% rename from primitives/src/lib.rs rename to runtime/primitives/src/lib.rs