Skip to content

Commit 2880737

Browse files
authored
deps: Audit 12/03 (#668)
1 parent 602fe5a commit 2880737

File tree

6 files changed

+105
-59
lines changed

6 files changed

+105
-59
lines changed

Cargo.lock

Lines changed: 44 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ members = ["crates/*"]
44
default-members = ["crates/cli"]
55

66
[workspace.dependencies]
7-
anyhow = "1.0.93"
7+
anyhow = "1.0.94"
88
async-trait = "0.1.83"
99
clap = "4.5.21"
1010
clap_complete = "4.5.38"
@@ -16,7 +16,7 @@ extism = ">=1.6.0" # Lower for consumers
1616
extism-pdk = "1.3.0"
1717
http-cache-reqwest = "0.15.0"
1818
human-sort = "0.2.2"
19-
indexmap = "2.6.0"
19+
indexmap = "2.7.0"
2020
miette = "7.4.0"
2121
once_cell = "1.20.2"
2222
regex = { version = "1.11.1", default-features = false, features = ["std"] }
@@ -38,8 +38,8 @@ serde = { version = "1.0.214", features = ["derive"] }
3838
serde_json = "1.0.133"
3939
sha2 = "0.10.8"
4040
shell-words = "1.1.0"
41-
starbase = { version = "0.9.5" }
42-
starbase_archive = { version = "0.8.10", features = [
41+
starbase = { version = "0.9.6" }
42+
starbase_archive = { version = "0.9.0", features = [
4343
"gz",
4444
"miette",
4545
"tar-bz2",
@@ -50,17 +50,17 @@ starbase_archive = { version = "0.8.10", features = [
5050
"zip-deflate",
5151
] }
5252
starbase_events = { version = "0.6.3" }
53-
starbase_sandbox = { version = "0.7.7" }
54-
starbase_shell = { version = "0.6.4", features = ["miette"] }
55-
starbase_styles = { version = "0.4.6" }
56-
starbase_utils = { version = "0.8.13", default-features = false, features = [
53+
starbase_sandbox = { version = "0.8.0" }
54+
starbase_shell = { version = "0.6.5", features = ["miette"] }
55+
starbase_styles = { version = "0.4.7" }
56+
starbase_utils = { version = "0.9.1", default-features = false, features = [
5757
"json",
5858
"miette",
5959
"net",
6060
"toml",
6161
] }
62-
thiserror = "2.0.3"
63-
tokio = { version = "1.41.0", features = ["full", "tracing"] }
62+
thiserror = "2.0.4"
63+
tokio = { version = "1.42.0", features = ["full", "tracing"] }
6464
tracing = "0.1.41"
6565
uuid = { version = "1.11.0", features = ["v4"] }
6666

crates/core/src/flow/install.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ impl Tool {
253253
&download_url,
254254
&download_file,
255255
DownloadOptions {
256-
client: Some(client.to_inner()),
256+
downloader: Some(Box::new(client.create_downloader())),
257257
on_chunk: options.on_download_chunk.take(),
258258
},
259259
)
@@ -276,7 +276,7 @@ impl Tool {
276276
&checksum_url,
277277
&checksum_file,
278278
DownloadOptions {
279-
client: Some(client.to_inner()),
279+
downloader: Some(Box::new(client.create_downloader())),
280280
on_chunk: None,
281281
},
282282
)

crates/warpgate/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ repository = "https://github.com/moonrepo/proto"
99
[dependencies]
1010
system_env = { version = "0.6.1", path = "../system-env" }
1111
warpgate_api = { version = "0.10.1", path = "../warpgate-api" }
12+
async-trait = { workspace = true }
1213
compact_str = { workspace = true }
1314
extism = { workspace = true, features = ["http"] }
1415
http-cache-reqwest = { workspace = true }

0 commit comments

Comments
 (0)