From c7fdacaf3c3bd6c62a806c83e437b0af5f76481f Mon Sep 17 00:00:00 2001 From: Miles Johnson Date: Sat, 14 Dec 2024 23:17:29 -0800 Subject: [PATCH] Update deps. --- Cargo.lock | 39 +++++++++++++------------------- Cargo.toml | 6 ++--- crates/cli/src/commands/clean.rs | 2 +- 3 files changed, 20 insertions(+), 27 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 170910f1..bfab556c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2712,7 +2712,7 @@ dependencies = [ "starbase_console", "starbase_sandbox", "starbase_shell", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "starbase_utils", "sysinfo", "system_env", @@ -2759,7 +2759,7 @@ dependencies = [ "shell-words", "starbase_archive", "starbase_sandbox", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "starbase_utils", "thiserror 2.0.4", "tokio", @@ -2777,7 +2777,7 @@ dependencies = [ "miette 7.4.0", "reqwest", "starbase_archive", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "starbase_utils", "system_env", "thiserror 2.0.4", @@ -3347,7 +3347,7 @@ dependencies = [ "serde", "serde_json", "serde_path_to_error", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "thiserror 2.0.4", "toml", "tracing", @@ -3732,7 +3732,7 @@ dependencies = [ "async-trait", "chrono", "miette 7.4.0", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "tokio", "tracing", "tracing-chrome", @@ -3750,7 +3750,7 @@ dependencies = [ "flate2", "miette 7.4.0", "rustc-hash", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "starbase_utils", "thiserror 2.0.4", "tracing", @@ -3761,14 +3761,16 @@ dependencies = [ [[package]] name = "starbase_console" -version = "0.0.1" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0d660a40f9912b8f06e205fb1ec2db0e7056ebd2781b7a0c41f74d66b0932ef" dependencies = [ "crossterm", "flume", "iocraft", "miette 7.4.0", "parking_lot", - "starbase_styles 0.4.7", + "starbase_styles", "tokio", "tracing", ] @@ -3790,9 +3792,9 @@ dependencies = [ [[package]] name = "starbase_shell" -version = "0.6.6" +version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b06f785e095de34294b82e5f81b3501734f9d5f8959a829c5d6b268e2a2db9f" +checksum = "37c6866901d54e6c7f427ef2d87ccc002c8afb015863e993622836d93fb89301" dependencies = [ "miette 7.4.0", "regex", @@ -3803,18 +3805,9 @@ dependencies = [ [[package]] name = "starbase_styles" -version = "0.4.7" -dependencies = [ - "dirs 5.0.1", - "owo-colors", - "supports-color", -] - -[[package]] -name = "starbase_styles" -version = "0.4.7" +version = "0.4.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1315c7a42b187ea3006f6b94bc4fed5c98de6077e6651ab295c6122fa7c8af05" +checksum = "b4d4dd948c7fe2118ff7b662c4171734c7dec02aaaea2bca7cc364d5cc7f4808" dependencies = [ "dirs 5.0.1", "miette 7.4.0", @@ -3838,7 +3831,7 @@ dependencies = [ "serde", "serde_json", "serde_yaml", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "thiserror 2.0.4", "tokio", "toml", @@ -4533,7 +4526,7 @@ dependencies = [ "sha2", "starbase_archive", "starbase_sandbox", - "starbase_styles 0.4.7 (registry+https://github.com/rust-lang/crates.io-index)", + "starbase_styles", "starbase_utils", "system_env", "thiserror 2.0.4", diff --git a/Cargo.toml b/Cargo.toml index 92b1d083..b228264b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,11 +50,11 @@ starbase_archive = { version = "0.9.0", features = [ "zip", "zip-deflate", ] } -starbase_console = { path = "../starbase/crates/console", features = ["ui"] } +starbase_console = { version = "0.1.0", features = ["ui"] } starbase_events = { version = "0.6.3" } starbase_sandbox = { version = "0.8.0" } -starbase_shell = { version = "0.6.6", features = ["miette"] } -starbase_styles = { version = "0.4.7" } +starbase_shell = { version = "0.6.8", features = ["miette"] } +starbase_styles = { version = "0.4.8" } starbase_utils = { version = "0.9.1", default-features = false, features = [ "json", "miette", diff --git a/crates/cli/src/commands/clean.rs b/crates/cli/src/commands/clean.rs index e68997e0..714e02d2 100644 --- a/crates/cli/src/commands/clean.rs +++ b/crates/cli/src/commands/clean.rs @@ -327,7 +327,7 @@ pub async fn internal_clean( debug!("Finding installed tools to clean up..."); for tool in session.load_tools().await? { - clean_count += clean_tool(&session, tool.tool, now, days, yes).await?; + clean_count += clean_tool(session, tool.tool, now, days, yes).await?; } clean_count += clean_proto(session, days as u64).await?;