diff --git a/runtime-interface/sandbox/Cargo.toml b/runtime-interface/sandbox/Cargo.toml index 43eefeaae27..f34553be354 100644 --- a/runtime-interface/sandbox/Cargo.toml +++ b/runtime-interface/sandbox/Cargo.toml @@ -1,5 +1,6 @@ [package] name = "gear-sandbox-interface" +description = "Gear Sandbox Interface" version.workspace = true authors.workspace = true edition.workspace = true diff --git a/utils/crates-io/src/lib.rs b/utils/crates-io/src/lib.rs index c9af56d3e59..ebadaacb564 100644 --- a/utils/crates-io/src/lib.rs +++ b/utils/crates-io/src/lib.rs @@ -29,10 +29,9 @@ use anyhow::Result; use std::process::{Command, ExitStatus}; /// Required Packages without local dependencies. -pub const SAFE_DEPENDENCIES: [&str; 15] = [ +pub const SAFE_DEPENDENCIES: [&str; 13] = [ "actor-system-error", "galloc", - "gprimitives", "gear-ss58", "gear-stack-buffer", "gear-core-errors", @@ -42,7 +41,6 @@ pub const SAFE_DEPENDENCIES: [&str; 15] = [ "gear-wasm-instrument", "gmeta-codegen", "gsdk-codegen", - "gstd-codegen", "gsys", "numerated", ]; @@ -52,7 +50,9 @@ pub const SAFE_DEPENDENCIES: [&str; 15] = [ /// NOTE: Each package in this array could possibly depend /// on the previous one, please be cautious about changing /// the order. -pub const STACKED_DEPENDENCIES: [&str; 13] = [ +pub const STACKED_DEPENDENCIES: [&str; 15] = [ + "gprimitives", + "gstd-codegen", "gcore", "gmeta", "gear-core", @@ -77,9 +77,9 @@ pub const PACKAGES: [&str; 10] = [ "gring", "gear-wasm-builder", "gear-node-wrapper", + "gtest", "cargo-gbuild", "gstd", - "gtest", "gsdk", "gclient", "gcli",