diff options
| author | Mateusz Mikuła <mati865@gmail.com> | 2024-11-07 02:04:47 +0100 |
|---|---|---|
| committer | Mateusz Mikuła <mati865@gmail.com> | 2024-11-07 02:09:39 +0100 |
| commit | 7cdbb59c26e4217ad94e8454403e98d00a66ddd9 (patch) | |
| tree | 7f6d8748b470e23587861f02fac802adc258fef7 | |
| parent | c07aa1e17199e27f6f7ac8f3307bca7bda0084b6 (diff) | |
| download | rust-7cdbb59c26e4217ad94e8454403e98d00a66ddd9.tar.gz rust-7cdbb59c26e4217ad94e8454403e98d00a66ddd9.zip | |
unpin and update memchr
| -rw-r--r-- | library/Cargo.lock | 5 | ||||
| -rw-r--r-- | library/std/Cargo.toml | 4 |
2 files changed, 2 insertions, 7 deletions
diff --git a/library/Cargo.lock b/library/Cargo.lock index 18c131a6eed..772f9b19695 100644 --- a/library/Cargo.lock +++ b/library/Cargo.lock @@ -167,9 +167,9 @@ dependencies = [ [[package]] name = "memchr" -version = "2.5.0" +version = "2.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" dependencies = [ "compiler_builtins", "rustc-std-workspace-core", @@ -335,7 +335,6 @@ dependencies = [ "hashbrown", "hermit-abi", "libc", - "memchr", "miniz_oxide", "object", "panic_abort", diff --git a/library/std/Cargo.toml b/library/std/Cargo.toml index 23ef172b6f0..b732fdf1696 100644 --- a/library/std/Cargo.toml +++ b/library/std/Cargo.toml @@ -22,10 +22,6 @@ unwind = { path = "../unwind" } hashbrown = { version = "0.15", default-features = false, features = [ 'rustc-dep-of-std', ] } -# FIXME(#127890): `object` depends on `memchr`, but `memchr` > v2.5 causes -# issues with LTO. This dependency is not used directly, but pin it here so -# it resolves to 2.5. To be removed once rust-lang/rust#127890 is fixed. -memchr = { version = "=2.5.0", default-features = false, features = ["rustc-dep-of-std"] } std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = [ 'rustc-dep-of-std', ] } |
