Skip to content

Commit dfa748e

Browse files
committed
Add memchr to [workspace.dependencies].
1 parent 82c4b9c commit dfa748e

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ exclude = [
6262
[workspace.dependencies]
6363
# tidy-alphabetical-start
6464
bitflags = "2.9.3"
65+
memchr = "2.7.5"
6566
thin-vec = "0.2.14"
6667
# tidy-alphabetical-end
6768

compiler/rustc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2024"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags.workspace = true
9-
memchr = "2.7.4"
9+
memchr.workspace = true
1010
rustc-literal-escaper = "0.0.5"
1111
rustc_ast_ir = { path = "../rustc_ast_ir" }
1212
rustc_data_structures = { path = "../rustc_data_structures" }

compiler/rustc_lexer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Rust lexer used by rustc. No stability guarantees are provided.
1414

1515
# Note that this crate purposefully does not depend on other rustc crates
1616
[dependencies]
17-
memchr = "2.7.4"
17+
memchr.workspace = true
1818
unicode-xid = "0.2.0"
1919

2020
[dependencies.unicode-properties]

0 commit comments

Comments
 (0)