Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7cdbb59

Browse files
committedNov 7, 2024
unpin and update memchr
1 parent c07aa1e commit 7cdbb59

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed
 

‎library/Cargo.lock

+2-3
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@ dependencies = [
167167

168168
[[package]]
169169
name = "memchr"
170-
version = "2.5.0"
170+
version = "2.7.4"
171171
source = "registry+https://github.com/rust-lang/crates.io-index"
172-
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
172+
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
173173
dependencies = [
174174
"compiler_builtins",
175175
"rustc-std-workspace-core",
@@ -335,7 +335,6 @@ dependencies = [
335335
"hashbrown",
336336
"hermit-abi",
337337
"libc",
338-
"memchr",
339338
"miniz_oxide",
340339
"object",
341340
"panic_abort",

‎library/std/Cargo.toml

-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ unwind = { path = "../unwind" }
2222
hashbrown = { version = "0.15", default-features = false, features = [
2323
'rustc-dep-of-std',
2424
] }
25-
# FIXME(#127890): `object` depends on `memchr`, but `memchr` > v2.5 causes
26-
# issues with LTO. This dependency is not used directly, but pin it here so
27-
# it resolves to 2.5. To be removed once rust-lang/rust#127890 is fixed.
28-
memchr = { version = "=2.5.0", default-features = false, features = ["rustc-dep-of-std"] }
2925
std_detect = { path = "../stdarch/crates/std_detect", default-features = false, features = [
3026
'rustc-dep-of-std',
3127
] }

0 commit comments

Comments
 (0)
Failed to load comments.