Skip to content

Commit 2e3a161

Browse files
Update rustc-literal-escaper version to 0.0.2
1 parent 2b533e6 commit 2e3a161

File tree

8 files changed

+15
-10
lines changed

8 files changed

+15
-10
lines changed

Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -3152,9 +3152,9 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
31523152

31533153
[[package]]
31543154
name = "rustc-literal-escaper"
3155-
version = "0.0.1"
3155+
version = "0.0.2"
31563156
source = "registry+https://github.com/rust-lang/crates.io-index"
3157-
checksum = "cfdd0fcb1409d38cb2d940400497e2384a4a04b8685ee92a0a7a8986ccd72115"
3157+
checksum = "0041b6238913c41fe704213a4a9329e2f685a156d1781998128b4149c230ad04"
31583158

31593159
[[package]]
31603160
name = "rustc-main"

compiler/rustc_ast/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ edition = "2024"
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
99
memchr = "2.7.4"
10+
rustc-literal-escaper = "0.0.2"
1011
rustc_ast_ir = { path = "../rustc_ast_ir" }
1112
rustc_data_structures = { path = "../rustc_data_structures" }
1213
rustc_index = { path = "../rustc_index" }
13-
rustc-literal-escaper = "0.0.1"
1414
rustc_macros = { path = "../rustc_macros" }
1515
rustc_serialize = { path = "../rustc_serialize" }
1616
rustc_span = { path = "../rustc_span" }

compiler/rustc_parse/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ edition = "2024"
66
[dependencies]
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
9+
rustc-literal-escaper = "0.0.2"
910
rustc_ast = { path = "../rustc_ast" }
1011
rustc_ast_pretty = { path = "../rustc_ast_pretty" }
1112
rustc_data_structures = { path = "../rustc_data_structures" }
@@ -15,7 +16,6 @@ rustc_fluent_macro = { path = "../rustc_fluent_macro" }
1516
rustc_index = { path = "../rustc_index" }
1617
rustc_lexer = { path = "../rustc_lexer" }
1718
rustc_macros = { path = "../rustc_macros" }
18-
rustc-literal-escaper = "0.0.1"
1919
rustc_session = { path = "../rustc_session" }
2020
rustc_span = { path = "../rustc_span" }
2121
thin-vec = "0.2.12"

compiler/rustc_parse_format/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ edition = "2024"
55

66
[dependencies]
77
# tidy-alphabetical-start
8+
rustc-literal-escaper = "0.0.2"
89
rustc_lexer = { path = "../rustc_lexer" }
9-
rustc-literal-escaper = "0.0.1"
1010
# tidy-alphabetical-end
1111

1212
[target.'cfg(target_pointer_width = "64")'.dev-dependencies]

library/Cargo.lock

+6-1
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,12 @@ dependencies = [
313313

314314
[[package]]
315315
name = "rustc-literal-escaper"
316-
version = "0.0.1"
316+
version = "0.0.2"
317+
source = "registry+https://github.com/rust-lang/crates.io-index"
318+
checksum = "0041b6238913c41fe704213a4a9329e2f685a156d1781998128b4149c230ad04"
319+
dependencies = [
320+
"rustc-std-workspace-std",
321+
]
317322

318323
[[package]]
319324
name = "rustc-std-workspace-alloc"

src/tools/rust-analyzer/Cargo.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -1746,9 +1746,9 @@ checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
17461746

17471747
[[package]]
17481748
name = "rustc-literal-escaper"
1749-
version = "0.0.1"
1749+
version = "0.0.2"
17501750
source = "registry+https://github.com/rust-lang/crates.io-index"
1751-
checksum = "cfdd0fcb1409d38cb2d940400497e2384a4a04b8685ee92a0a7a8986ccd72115"
1751+
checksum = "0041b6238913c41fe704213a4a9329e2f685a156d1781998128b4149c230ad04"
17521752

17531753
[[package]]
17541754
name = "rustc-stable-hash"

src/tools/rust-analyzer/crates/parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ rust-version.workspace = true
1414
[dependencies]
1515
drop_bomb = "0.1.5"
1616
ra-ap-rustc_lexer.workspace = true
17-
rustc-literal-escaper = "0.0.1"
17+
rustc-literal-escaper = "0.0.2"
1818
tracing = { workspace = true, optional = true }
1919

2020
edition.workspace = true

src/tools/rust-analyzer/crates/syntax/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ either.workspace = true
1717
itertools.workspace = true
1818
rowan = "=0.15.15"
1919
rustc-hash.workspace = true
20-
rustc-literal-escaper = "0.0.1"
20+
rustc-literal-escaper = "0.0.2"
2121
indexmap.workspace = true
2222
smol_str.workspace = true
2323
triomphe.workspace = true

0 commit comments

Comments
 (0)