Skip to content

Commit 5fd7f22

Browse files
authored
Unrolled build for rust-lang#133812
Rollup merge of rust-lang#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 rust-lang#133649
2 parents c44b3d5 + c0a00b7 commit 5fd7f22

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

Cargo.lock

+11-2
Original file line numberDiff line numberDiff line change
@@ -5803,17 +5803,20 @@ checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
58035803

58045804
[[package]]
58055805
name = "wasm-component-ld"
5806-
version = "0.5.10"
5806+
version = "0.5.11"
58075807
source = "registry+https://github.com/rust-lang/crates.io-index"
5808-
checksum = "4d4aa6bd7fbe7cffbed29fe3e236fda74419def1bdef6f80f989ec51137edf44"
5808+
checksum = "a2b05c3820968b335f10e703218459e4fd2cc91fdfc8f7936a993f1aacaa0938"
58095809
dependencies = [
58105810
"anyhow",
58115811
"clap",
58125812
"lexopt",
5813+
"libc",
58135814
"tempfile",
58145815
"wasi-preview1-component-adapter-provider",
58155816
"wasmparser 0.219.1",
58165817
"wat",
5818+
"windows-sys 0.59.0",
5819+
"winsplit",
58175820
"wit-component",
58185821
"wit-parser",
58195822
]
@@ -6185,6 +6188,12 @@ dependencies = [
61856188
"memchr",
61866189
]
61876190

6191+
[[package]]
6192+
name = "winsplit"
6193+
version = "0.1.0"
6194+
source = "registry+https://github.com/rust-lang/crates.io-index"
6195+
checksum = "3ab703352da6a72f35c39a533526393725640575bb211f61987a2748323ad956"
6196+
61886197
[[package]]
61896198
name = "wit-component"
61906199
version = "0.219.1"

src/tools/wasm-component-ld/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ name = "wasm-component-ld"
1010
path = "src/main.rs"
1111

1212
[dependencies]
13-
wasm-component-ld = "0.5.10"
13+
wasm-component-ld = "0.5.11"

0 commit comments

Comments
 (0)