Skip to content

Commit dfe0667

Browse files
committed
Unpin libc in compiler and rustbook
1 parent 292db4a commit dfe0667

File tree

4 files changed

+19
-21
lines changed

4 files changed

+19
-21
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1289,7 +1289,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
12891289
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
12901290
dependencies = [
12911291
"libc",
1292-
"windows-sys 0.60.2",
1292+
"windows-sys 0.52.0",
12931293
]
12941294

12951295
[[package]]
@@ -2102,9 +2102,9 @@ checksum = "9fa0e2a1fcbe2f6be6c42e342259976206b383122fc152e872795338b5a3f3a7"
21022102

21032103
[[package]]
21042104
name = "libc"
2105-
version = "0.2.174"
2105+
version = "0.2.177"
21062106
source = "registry+https://github.com/rust-lang/crates.io-index"
2107-
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
2107+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
21082108

21092109
[[package]]
21102110
name = "libdbus-sys"
@@ -2155,7 +2155,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
21552155
checksum = "07033963ba89ebaf1584d767badaa2e8fcec21aedea6b8c0346d487d49c28667"
21562156
dependencies = [
21572157
"cfg-if",
2158-
"windows-targets 0.53.3",
2158+
"windows-targets 0.52.6",
21592159
]
21602160

21612161
[[package]]
@@ -2217,9 +2217,9 @@ dependencies = [
22172217

22182218
[[package]]
22192219
name = "linux-raw-sys"
2220-
version = "0.9.4"
2220+
version = "0.11.0"
22212221
source = "registry+https://github.com/rust-lang/crates.io-index"
2222-
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
2222+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
22232223

22242224
[[package]]
22252225
name = "litemap"
@@ -4898,15 +4898,15 @@ dependencies = [
48984898

48994899
[[package]]
49004900
name = "rustix"
4901-
version = "1.0.8"
4901+
version = "1.1.2"
49024902
source = "registry+https://github.com/rust-lang/crates.io-index"
4903-
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
4903+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
49044904
dependencies = [
49054905
"bitflags",
49064906
"errno",
49074907
"libc",
49084908
"linux-raw-sys",
4909-
"windows-sys 0.60.2",
4909+
"windows-sys 0.52.0",
49104910
]
49114911

49124912
[[package]]

compiler/rustc_session/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ tracing = "0.1"
3030
# FIXME: Remove this pin once this rustix issue is resolved
3131
# https://github.com/bytecodealliance/rustix/issues/1496
3232
# tidy-alphabetical-start
33-
libc = "=0.2.174"
33+
libc = "0.2"
3434
# tidy-alphabetical-end
3535

3636
[target.'cfg(windows)'.dependencies.windows]

src/tools/rustbook/Cargo.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
464464
checksum = "778e2ac28f6c47af28e4907f13ffd1e1ddbd400980a9abd7c8df189bf578a5ad"
465465
dependencies = [
466466
"libc",
467-
"windows-sys 0.60.2",
467+
"windows-sys 0.59.0",
468468
]
469469

470470
[[package]]
@@ -807,9 +807,9 @@ checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
807807

808808
[[package]]
809809
name = "libc"
810-
version = "0.2.174"
810+
version = "0.2.177"
811811
source = "registry+https://github.com/rust-lang/crates.io-index"
812-
checksum = "1171693293099992e19cddea4e8b849964e9846f4acee11b3948bcc337be8776"
812+
checksum = "2874a2af47a2325c2001a6e6fad9b16a53b802102b528163885171cf92b15976"
813813

814814
[[package]]
815815
name = "linereader"
@@ -822,9 +822,9 @@ dependencies = [
822822

823823
[[package]]
824824
name = "linux-raw-sys"
825-
version = "0.9.4"
825+
version = "0.11.0"
826826
source = "registry+https://github.com/rust-lang/crates.io-index"
827-
checksum = "cd945864f07fe9f5371a27ad7b52a172b4b499999f1d97574c9fa68373937e12"
827+
checksum = "df1d3c3b53da64cf5760482273a98e575c651a67eec7f77df96b5b642de8f039"
828828

829829
[[package]]
830830
name = "litemap"
@@ -1394,15 +1394,15 @@ dependencies = [
13941394

13951395
[[package]]
13961396
name = "rustix"
1397-
version = "1.0.8"
1397+
version = "1.1.2"
13981398
source = "registry+https://github.com/rust-lang/crates.io-index"
1399-
checksum = "11181fbabf243db407ef8df94a6ce0b2f9a733bd8be4ad02b4eda9602296cac8"
1399+
checksum = "cd15f8a2c5551a84d56efdc1cd049089e409ac19a3072d5037a17fd70719ff3e"
14001400
dependencies = [
14011401
"bitflags 2.9.2",
14021402
"errno",
14031403
"libc",
14041404
"linux-raw-sys",
1405-
"windows-sys 0.60.2",
1405+
"windows-sys 0.59.0",
14061406
]
14071407

14081408
[[package]]

src/tools/rustbook/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ edition = "2021"
1010
[dependencies]
1111
clap = "4.0.32"
1212
env_logger = "0.11"
13-
# FIXME: Remove this pin once this rustix issue is resolved
14-
# https://github.com/bytecodealliance/rustix/issues/1496
15-
libc = "=0.2.174"
13+
libc = "0.2"
1614
mdbook-trpl = { path = "../../doc/book/packages/mdbook-trpl" }
1715
mdbook-i18n-helpers = "0.3.3"
1816
mdbook-spec = { path = "../../doc/reference/mdbook-spec" }

0 commit comments

Comments
 (0)