Skip to content

Commit 8666ade

Browse files
committed
use latest version of hermit-abi
0.3.0 and 0.3.1 have an issue and will be yanked. Consequently, std should switch to 0.3.2.
1 parent e1777f9 commit 8666ade

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -1529,9 +1529,9 @@ dependencies = [
15291529

15301530
[[package]]
15311531
name = "hermit-abi"
1532-
version = "0.3.1"
1532+
version = "0.3.2"
15331533
source = "registry+https://github.com/rust-lang/crates.io-index"
1534-
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
1534+
checksum = "443144c8cdadd93ebf52ddb4056d257f5b52c04d3c804e657d19eb73fc33668b"
15351535
dependencies = [
15361536
"compiler_builtins",
15371537
"rustc-std-workspace-alloc",
@@ -1864,7 +1864,7 @@ version = "1.0.11"
18641864
source = "registry+https://github.com/rust-lang/crates.io-index"
18651865
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
18661866
dependencies = [
1867-
"hermit-abi 0.3.1",
1867+
"hermit-abi 0.3.2",
18681868
"libc",
18691869
"windows-sys 0.48.0",
18701870
]
@@ -1881,7 +1881,7 @@ version = "0.4.8"
18811881
source = "registry+https://github.com/rust-lang/crates.io-index"
18821882
checksum = "24fddda5af7e54bf7da53067d6e802dbcc381d0a8eef629df528e3ebf68755cb"
18831883
dependencies = [
1884-
"hermit-abi 0.3.1",
1884+
"hermit-abi 0.3.2",
18851885
"rustix 0.38.2",
18861886
"windows-sys 0.48.0",
18871887
]
@@ -2396,7 +2396,7 @@ version = "1.16.0"
23962396
source = "registry+https://github.com/rust-lang/crates.io-index"
23972397
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
23982398
dependencies = [
2399-
"hermit-abi 0.3.1",
2399+
"hermit-abi 0.3.2",
24002400
"libc",
24012401
]
24022402

@@ -4819,7 +4819,7 @@ dependencies = [
48194819
"dlmalloc",
48204820
"fortanix-sgx-abi",
48214821
"hashbrown 0.14.0",
4822-
"hermit-abi 0.3.1",
4822+
"hermit-abi 0.3.2",
48234823
"libc",
48244824
"miniz_oxide",
48254825
"object",

library/std/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dlmalloc = { version = "0.2.3", features = ['rustc-dep-of-std'] }
4545
fortanix-sgx-abi = { version = "0.5.0", features = ['rustc-dep-of-std'], public = true }
4646

4747
[target.'cfg(target_os = "hermit")'.dependencies]
48-
hermit-abi = { version = "0.3.1", features = ['rustc-dep-of-std'], public = true }
48+
hermit-abi = { version = "0.3.2", features = ['rustc-dep-of-std'], public = true }
4949

5050
[target.wasm32-wasi.dependencies]
5151
wasi = { version = "0.11.0", features = ['rustc-dep-of-std'], default-features = false }

0 commit comments

Comments
 (0)