Skip to content

Commit

Permalink
deps: Audit 12/03 (#668)
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj authored Dec 3, 2024
1 parent 602fe5a commit 2880737
Showing 6 changed files with 105 additions and 59 deletions.
86 changes: 44 additions & 42 deletions Cargo.lock

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

20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@ members = ["crates/*"]
default-members = ["crates/cli"]

[workspace.dependencies]
anyhow = "1.0.93"
anyhow = "1.0.94"
async-trait = "0.1.83"
clap = "4.5.21"
clap_complete = "4.5.38"
@@ -16,7 +16,7 @@ extism = ">=1.6.0" # Lower for consumers
extism-pdk = "1.3.0"
http-cache-reqwest = "0.15.0"
human-sort = "0.2.2"
indexmap = "2.6.0"
indexmap = "2.7.0"
miette = "7.4.0"
once_cell = "1.20.2"
regex = { version = "1.11.1", default-features = false, features = ["std"] }
@@ -38,8 +38,8 @@ serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.133"
sha2 = "0.10.8"
shell-words = "1.1.0"
starbase = { version = "0.9.5" }
starbase_archive = { version = "0.8.10", features = [
starbase = { version = "0.9.6" }
starbase_archive = { version = "0.9.0", features = [
"gz",
"miette",
"tar-bz2",
@@ -50,17 +50,17 @@ starbase_archive = { version = "0.8.10", features = [
"zip-deflate",
] }
starbase_events = { version = "0.6.3" }
starbase_sandbox = { version = "0.7.7" }
starbase_shell = { version = "0.6.4", features = ["miette"] }
starbase_styles = { version = "0.4.6" }
starbase_utils = { version = "0.8.13", default-features = false, features = [
starbase_sandbox = { version = "0.8.0" }
starbase_shell = { version = "0.6.5", features = ["miette"] }
starbase_styles = { version = "0.4.7" }
starbase_utils = { version = "0.9.1", default-features = false, features = [
"json",
"miette",
"net",
"toml",
] }
thiserror = "2.0.3"
tokio = { version = "1.41.0", features = ["full", "tracing"] }
thiserror = "2.0.4"
tokio = { version = "1.42.0", features = ["full", "tracing"] }
tracing = "0.1.41"
uuid = { version = "1.11.0", features = ["v4"] }

4 changes: 2 additions & 2 deletions crates/core/src/flow/install.rs
Original file line number Diff line number Diff line change
@@ -253,7 +253,7 @@ impl Tool {
&download_url,
&download_file,
DownloadOptions {
client: Some(client.to_inner()),
downloader: Some(Box::new(client.create_downloader())),
on_chunk: options.on_download_chunk.take(),
},
)
@@ -276,7 +276,7 @@ impl Tool {
&checksum_url,
&checksum_file,
DownloadOptions {
client: Some(client.to_inner()),
downloader: Some(Box::new(client.create_downloader())),
on_chunk: None,
},
)
1 change: 1 addition & 0 deletions crates/warpgate/Cargo.toml
Original file line number Diff line number Diff line change
@@ -9,6 +9,7 @@ repository = "https://github.com/moonrepo/proto"
[dependencies]
system_env = { version = "0.6.1", path = "../system-env" }
warpgate_api = { version = "0.10.1", path = "../warpgate-api" }
async-trait = { workspace = true }
compact_str = { workspace = true }
extism = { workspace = true, features = ["http"] }
http-cache-reqwest = { workspace = true }
Loading

0 comments on commit 2880737

Please sign in to comment.