diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-12-03 21:55:29 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-12-03 21:55:29 +0100 |
| commit | fd182ca529ecd9d116848543d119513f836e61ab (patch) | |
| tree | 78d8389fd2c5f13716c23d5c91b478147837b822 | |
| parent | 9a972146c29c21f607c6638c7dd1704070285aa5 (diff) | |
| parent | c0a00b73f82a0e46155b342d62a44ba47fff5b15 (diff) | |
| download | rust-fd182ca529ecd9d116848543d119513f836e61ab.tar.gz rust-fd182ca529ecd9d116848543d119513f836e61ab.zip | |
Rollup merge of #133812 - alexcrichton:update-wasm-component-ld, r=jieyouxu
Update wasm-component-ld to 0.5.11 This pulls in an update that supports ``@`-files` used to pass arguments to linkers to fix invocations on Windows that are large. Closes #133649
| -rw-r--r-- | Cargo.lock | 13 | ||||
| -rw-r--r-- | src/tools/wasm-component-ld/Cargo.toml | 2 |
2 files changed, 12 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index a96e0685858..f59dcdcf28d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5803,17 +5803,20 @@ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d" [[package]] name = "wasm-component-ld" -version = "0.5.10" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4d4aa6bd7fbe7cffbed29fe3e236fda74419def1bdef6f80f989ec51137edf44" +checksum = "a2b05c3820968b335f10e703218459e4fd2cc91fdfc8f7936a993f1aacaa0938" dependencies = [ "anyhow", "clap", "lexopt", + "libc", "tempfile", "wasi-preview1-component-adapter-provider", "wasmparser 0.219.1", "wat", + "windows-sys 0.59.0", + "winsplit", "wit-component", "wit-parser", ] @@ -6186,6 +6189,12 @@ dependencies = [ ] [[package]] +name = "winsplit" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ab703352da6a72f35c39a533526393725640575bb211f61987a2748323ad956" + +[[package]] name = "wit-component" version = "0.219.1" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/src/tools/wasm-component-ld/Cargo.toml b/src/tools/wasm-component-ld/Cargo.toml index acdb1aa1ab7..965e9b01a44 100644 --- a/src/tools/wasm-component-ld/Cargo.toml +++ b/src/tools/wasm-component-ld/Cargo.toml @@ -10,4 +10,4 @@ name = "wasm-component-ld" path = "src/main.rs" [dependencies] -wasm-component-ld = "0.5.10" +wasm-component-ld = "0.5.11" |
