From 750a8490a0f1266ffc7f7451f20774e65c03b6ef Mon Sep 17 00:00:00 2001 From: nicolas <48695862+merklefruit@users.noreply.github.com> Date: Sat, 7 Oct 2023 13:31:40 +0200 Subject: [PATCH] chore: cargo.toml cleanup --- Cargo.lock | 9 --------- crates/composer/Cargo.toml | 14 +------------- 2 files changed, 1 insertion(+), 22 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 23c3695..37adb5c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1342,17 +1342,8 @@ name = "op-composer" version = "0.1.0" dependencies = [ "bollard", - "enum-variants-strings", "eyre", - "hex-literal", - "inquire", - "once_cell", - "op-primitives", "pretty_assertions", - "serde", - "serde_json", - "serde_regex", - "strum", "tokio", "tracing", ] diff --git a/crates/composer/Cargo.toml b/crates/composer/Cargo.toml index 76fb32c..3d38c18 100644 --- a/crates/composer/Cargo.toml +++ b/crates/composer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "op-composer" -description = "A Docker Compose-like tool for managing Op Stack components" +description = "A Docker container orchestration tool for OP stack components" version.workspace = true edition.workspace = true @@ -11,21 +11,9 @@ homepage.workspace = true repository.workspace = true [dependencies] -op-primitives = { path = "../primitives" } - -strum.workspace = true -inquire.workspace = true -serde.workspace = true -serde_json.workspace = true -serde_regex.workspace = true -enum-variants-strings.workspace = true - eyre.workspace = true tracing.workspace = true -hex-literal.workspace = true -once_cell.workspace = true - bollard = "0.15.0" tokio = { version = "1.11.0", features = ["full"] }