Skip to content

Commit d4d0350

Browse files
authored
Merge pull request #214 from influxdata/dependabot/cargo/rust-other-969f261e9a
chore(deps): bump the rust-other group across 1 directory with 4 updates
2 parents ec687b0 + 13713df commit d4d0350

File tree

4 files changed

+33
-15
lines changed

4 files changed

+33
-15
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ datafusion-udf-wasm-guest = { path = "guests/rust", version = "0.1.0" }
3131
datafusion-udf-wasm-host = { path = "host", version = "0.1.0" }
3232
datafusion-udf-wasm-python = { path = "guests/python", version = "0.1.0" }
3333
datafusion-udf-wasm-query = { path = "query", version = "0.1.0" }
34-
http = { version = "1.3.1", default-features = false }
34+
http = { version = "1.4.0", default-features = false }
3535
hyper = { version = "1.8", default-features = false }
3636
insta = { version = "1.44.1", "default-features" = false }
3737
log = { version = "0.4.28", default-features = false }

guests/python/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ wasip2.workspace = true
2121
flate2 = "1.0.35"
2222
sha2 = "0.10.8"
2323
tar.workspace = true
24-
ureq = "2.12.1"
24+
ureq = "3.1.4"
2525
walkdir = "2.5.0"
2626

2727
[lints]

guests/python/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ fn download_wasi_sdk() -> Result<Option<String>, Box<dyn std::error::Error>> {
8686
.map_err(|e| format!("failed to download WASI SDK: {}", e))?;
8787

8888
let mut file = File::create(&tar_gz_path)?;
89-
let mut reader = response.into_reader();
89+
let mut reader = response.into_body().into_reader();
9090
let mut hasher = sha2::Sha256::new();
9191
let mut buffer = [0u8; 8192];
9292
while let Ok(n) = reader.read(&mut buffer)

0 commit comments

Comments
 (0)