Skip to content

Commit

Permalink
fix(crates-io): correct publishing order (#4143)
Browse files Browse the repository at this point in the history
  • Loading branch information
breathx authored Aug 12, 2024
1 parent a414f6e commit 7b42409
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions runtime-interface/sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[package]
name = "gear-sandbox-interface"
description = "Gear Sandbox Interface"
version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
10 changes: 5 additions & 5 deletions utils/crates-io/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -42,7 +41,6 @@ pub const SAFE_DEPENDENCIES: [&str; 15] = [
"gear-wasm-instrument",
"gmeta-codegen",
"gsdk-codegen",
"gstd-codegen",
"gsys",
"numerated",
];
Expand All @@ -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",
Expand All @@ -77,9 +77,9 @@ pub const PACKAGES: [&str; 10] = [
"gring",
"gear-wasm-builder",
"gear-node-wrapper",
"gtest",
"cargo-gbuild",
"gstd",
"gtest",
"gsdk",
"gclient",
"gcli",
Expand Down

0 comments on commit 7b42409

Please sign in to comment.