Skip to content

Commit 874dbd5

Browse files
committed
std: Update wasi crate dependency
The recent work on the WASIp2 target being integrated into the standard library ended up causing a bug in nightly on the target. This has now been fixed in the `wasi` crate so this commit pulls in the updated version to ensure bindings work correctly.
1 parent 99317ef commit 874dbd5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

library/Cargo.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ dependencies = [
328328
"std_detect",
329329
"unwind",
330330
"wasi 0.11.1+wasi-snapshot-preview1",
331-
"wasi 0.14.3+wasi-0.2.4",
331+
"wasi 0.14.4+wasi-0.2.4",
332332
"windows-targets 0.0.0",
333333
]
334334

@@ -402,9 +402,9 @@ dependencies = [
402402

403403
[[package]]
404404
name = "wasi"
405-
version = "0.14.3+wasi-0.2.4"
405+
version = "0.14.4+wasi-0.2.4"
406406
source = "registry+https://github.com/rust-lang/crates.io-index"
407-
checksum = "6a51ae83037bdd272a9e28ce236db8c07016dd0d50c27038b3f407533c030c95"
407+
checksum = "88a5f4a424faf49c3c2c344f166f0662341d470ea185e939657aaff130f0ec4a"
408408
dependencies = [
409409
"rustc-std-workspace-alloc",
410410
"rustc-std-workspace-core",

library/std/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ wasi = { version = "0.11.0", features = [
8181
], default-features = false }
8282

8383
[target.'cfg(all(target_os = "wasi", target_env = "p2"))'.dependencies]
84-
wasip2 = { version = '0.14.3', features = [
84+
wasip2 = { version = '0.14.4', features = [
8585
'rustc-dep-of-std',
8686
], default-features = false, package = 'wasi' }
8787

0 commit comments

Comments
 (0)