Skip to content

Commit

Permalink
Rename.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Sep 20, 2023
1 parent 204e571 commit 12fc141
Show file tree
Hide file tree
Showing 20 changed files with 28 additions and 28 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/core/action/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
moon_common = { path = "../../../nextgen/common" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_target = { path = "../../../nextgen/target" }
moon_utils = { path = "../utils" }
miette = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/action/src/node.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use moon_common::Id;
use moon_platform_runtime2::Runtime;
use moon_platform_runtime::Runtime;
use moon_target::Target;
use serde::Serialize;
use std::hash::{Hash, Hasher};
Expand Down
2 changes: 1 addition & 1 deletion crates/core/emitter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ harness = false
[dependencies]
moon_action = { path = "../action" }
moon_action_context = { path = "../action-context" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_project = { path = "../../../nextgen/project" }
moon_target = { path = "../../../nextgen/target" }
moon_task = { path = "../../../nextgen/task" }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/emitter/src/event.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use moon_action::{Action, ActionNode};
use moon_action_context::ActionContext;
use moon_platform_runtime2::Runtime;
use moon_platform_runtime::Runtime;
use moon_project::Project;
use moon_target::Target;
use moon_task::Task;
Expand Down
2 changes: 1 addition & 1 deletion crates/core/platform/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ moon_action_context = { path = "../action-context" }
moon_common = { path = "../../../nextgen/common" }
moon_config = { path = "../../../nextgen/config" }
moon_hash = { path = "../../../nextgen/hash" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_process = { path = "../../../nextgen/process" }
moon_project = { path = "../../../nextgen/project" }
moon_task = { path = "../../../nextgen/task" }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/platform/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ mod platform;

pub use manager::*;
pub use moon_config::PlatformType;
pub use moon_platform_runtime2::*;
pub use moon_platform_runtime::*;
pub use platform::*;
2 changes: 1 addition & 1 deletion crates/core/platform/src/platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use moon_config::{
ProjectsSourcesMap, TasksConfigsMap, Version,
};
use moon_hash::ContentHasher;
use moon_platform_runtime2::{Runtime, RuntimeReq};
use moon_platform_runtime::{Runtime, RuntimeReq};
use moon_process::Command;
use moon_project::Project;
use moon_task::Task;
Expand Down
2 changes: 1 addition & 1 deletion crates/core/runner/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ moon_emitter = { path = "../emitter" }
moon_hash = { path = "../../../nextgen/hash" }
moon_logger = { path = "../logger" }
moon_platform = { path = "../platform" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_process = { path = "../../../nextgen/process" }
moon_project = { path = "../../../nextgen/project" }
moon_target = { path = "../../../nextgen/target" }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/runner/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use moon_emitter::{Emitter, Event, EventFlow};
use moon_hash::ContentHasher;
use moon_logger::{debug, warn};
use moon_platform::PlatformManager;
use moon_platform_runtime2::Runtime;
use moon_platform_runtime::Runtime;
use moon_process::{args, output_to_error, output_to_string, Command, Output};
use moon_project::Project;
use moon_target::{TargetError, TargetScope};
Expand Down
2 changes: 1 addition & 1 deletion crates/core/tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
moon_lang = { path = "../lang" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_process = { path = "../../../nextgen/process" }
async-trait = { workspace = true }
miette = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/core/tool/src/errors.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use miette::Diagnostic;
use moon_platform_runtime2::Runtime;
use moon_platform_runtime::Runtime;
use starbase_styles::{Style, Stylize};
use thiserror::Error;

Expand Down
2 changes: 1 addition & 1 deletion crates/core/tool/src/manager.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crate::errors::ToolError;
use crate::tool::Tool;
use moon_platform_runtime2::{Runtime, RuntimeReq};
use moon_platform_runtime::{Runtime, RuntimeReq};
use proto_core::Version;
use rustc_hash::FxHashMap;

Expand Down
2 changes: 1 addition & 1 deletion crates/deno/tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ publish = false

[dependencies]
moon_config = { path = "../../../nextgen/config" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_tool = { path = "../../core/tool" }
miette = { workspace = true }
proto_core = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/deno/tool/src/deno_tool.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use moon_config::DenoConfig;
use moon_platform_runtime2::RuntimeReq;
use moon_platform_runtime::RuntimeReq;
use moon_tool::{async_trait, Tool};
use proto_core::ProtoEnvironment;
use std::path::PathBuf;
Expand Down
2 changes: 1 addition & 1 deletion crates/node/tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
moon_config = { path = "../../../nextgen/config" }
moon_logger = { path = "../../core/logger" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_process = { path = "../../../nextgen/process" }
moon_node_lang = { path = "../lang" }
moon_terminal = { path = "../../core/terminal" }
Expand Down
2 changes: 1 addition & 1 deletion crates/node/tool/src/node_tool.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use crate::yarn_tool::YarnTool;
use moon_config::{NodeConfig, NodePackageManager};
use moon_logger::debug;
use moon_node_lang::node;
use moon_platform_runtime2::RuntimeReq;
use moon_platform_runtime::RuntimeReq;
use moon_process::Command;
use moon_terminal::{print_checkpoint, Checkpoint};
use moon_tool::{
Expand Down
2 changes: 1 addition & 1 deletion crates/rust/tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ publish = false
[dependencies]
moon_config = { path = "../../../nextgen/config" }
moon_logger = { path = "../../core/logger" }
moon_platform_runtime2 = { path = "../../../nextgen/platform-runtime" }
moon_platform_runtime = { path = "../../../nextgen/platform-runtime" }
moon_process = { path = "../../../nextgen/process" }
moon_terminal = { path = "../../core/terminal" }
moon_tool = { path = "../../core/tool" }
Expand Down
2 changes: 1 addition & 1 deletion crates/rust/tool/src/rust_tool.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use moon_config::RustConfig;
use moon_logger::debug;
use moon_platform_runtime2::RuntimeReq;
use moon_platform_runtime::RuntimeReq;
use moon_process::Command;
use moon_terminal::{print_checkpoint, Checkpoint};
use moon_tool::{async_trait, load_tool_plugin, Tool};
Expand Down
2 changes: 1 addition & 1 deletion nextgen/platform-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "moon_platform_runtime2"
name = "moon_platform_runtime"
version = "0.1.0"
edition = "2021"
publish = false
Expand Down

0 comments on commit 12fc141

Please sign in to comment.