Skip to content

Commit 8c24b68

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

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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"

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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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"

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)