Skip to content

Commit

Permalink
Update deps.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Dec 15, 2024
1 parent f9418f6 commit 92e94ef
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 47 deletions.
60 changes: 17 additions & 43 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.7", 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",
Expand Down
2 changes: 1 addition & 1 deletion crates/cli/src/commands/clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;
Expand Down

0 comments on commit 92e94ef

Please sign in to comment.