Skip to content

Commit 32b0fff

Browse files
committed
Add rustc-literal-escaper to [workspace.dependencies].
1 parent dfa748e commit 32b0fff

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ exclude = [
6363
# tidy-alphabetical-start
6464
bitflags = "2.9.3"
6565
memchr = "2.7.5"
66+
rustc-literal-escaper = "0.0.5"
6667
thin-vec = "0.2.14"
6768
# tidy-alphabetical-end
6869

compiler/rustc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ edition = "2024"
77
# tidy-alphabetical-start
88
bitflags.workspace = true
99
memchr.workspace = true
10-
rustc-literal-escaper = "0.0.5"
10+
rustc-literal-escaper.workspace = true
1111
rustc_ast_ir = { path = "../rustc_ast_ir" }
1212
rustc_data_structures = { path = "../rustc_data_structures" }
1313
rustc_index = { path = "../rustc_index" }

compiler/rustc_parse/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-
rustc-literal-escaper = "0.0.5"
9+
rustc-literal-escaper.workspace = true
1010
rustc_ast = { path = "../rustc_ast" }
1111
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1212
rustc_data_structures = { path = "../rustc_data_structures" }

compiler/rustc_parse_format/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
rustc-literal-escaper = "0.0.5"
8+
rustc-literal-escaper.workspace = true
99
rustc_lexer = { path = "../rustc_lexer" }
1010
# tidy-alphabetical-end
1111

compiler/rustc_proc_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ doctest = false
1616

1717
[dependencies]
1818
# tidy-alphabetical-start
19-
rustc-literal-escaper = "0.0.5"
19+
rustc-literal-escaper.workspace = true
2020
# tidy-alphabetical-end
2121

2222
[features]

0 commit comments

Comments
 (0)