Skip to content

Commit 31eaed4

Browse files
Rollup merge of #158309 - GuillaumeGomez:update-literal-escaper, r=GuillaumeGomez
Update `rustc-literal-escaper` version to `0.0.8` This new version contains a minor performance improvement. More detail in the PR: rust-lang/literal-escaper#27 cc @hkBst r? ghost
2 parents b0aab7b + 4fab41a commit 31eaed4

9 files changed

Lines changed: 11 additions & 11 deletions

File tree

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3554,9 +3554,9 @@ checksum = "357703d41365b4b27c590e3ed91eabb1b663f07c4c084095e60cbed4362dff0d"
35543554

35553555
[[package]]
35563556
name = "rustc-literal-escaper"
3557-
version = "0.0.7"
3557+
version = "0.0.8"
35583558
source = "registry+https://github.com/rust-lang/crates.io-index"
3559-
checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198"
3559+
checksum = "bfe6f213fb658c8fb95baabd5420393438cf5a98d707f5dd701d9197c705f71e"
35603560

35613561
[[package]]
35623562
name = "rustc-main"

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 = "2.4.1"
99
memchr = "2.7.6"
10-
rustc-literal-escaper = "0.0.7"
10+
rustc-literal-escaper = "0.0.8"
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 = "2.4.1"
9-
rustc-literal-escaper = "0.0.7"
9+
rustc-literal-escaper = "0.0.8"
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.7"
8+
rustc-literal-escaper = "0.0.8"
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.7"
19+
rustc-literal-escaper = "0.0.8"
2020
# tidy-alphabetical-end
2121

2222
[features]

library/Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -283,9 +283,9 @@ dependencies = [
283283

284284
[[package]]
285285
name = "rustc-literal-escaper"
286-
version = "0.0.7"
286+
version = "0.0.8"
287287
source = "registry+https://github.com/rust-lang/crates.io-index"
288-
checksum = "8be87abb9e40db7466e0681dc8ecd9dcfd40360cb10b4c8fe24a7c4c3669b198"
288+
checksum = "bfe6f213fb658c8fb95baabd5420393438cf5a98d707f5dd701d9197c705f71e"
289289
dependencies = [
290290
"rustc-std-workspace-core",
291291
]

library/proc_macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ std = { path = "../std" }
99
# `core` when resolving doc links. Without this line a different `core` will be
1010
# loaded from sysroot causing duplicate lang items and other similar errors.
1111
core = { path = "../core" }
12-
rustc-literal-escaper = { version = "0.0.7", features = ["rustc-dep-of-std"] }
12+
rustc-literal-escaper = { version = "0.0.8", features = ["rustc-dep-of-std"] }
1313

1414
[features]
1515
default = ["rustc-dep-of-std"]

src/tools/clippy/clippy_dev/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ clap = { version = "4.4", features = ["derive"] }
1010
indoc = "1.0"
1111
itertools = "0.12"
1212
opener = "0.8"
13-
rustc-literal-escaper = "0.0.7"
13+
rustc-literal-escaper = "0.0.8"
1414
walkdir = "2.3"
1515

1616
[package.metadata.rust-analyzer]

src/tools/lint-docs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description = "A script to extract the lint documentation for the rustc book."
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
rustc-literal-escaper = "0.0.7"
10+
rustc-literal-escaper = "0.0.8"
1111
serde_json = "1.0.57"
1212
tempfile = "3.1.0"
1313
walkdir = "2.3.1"

0 commit comments

Comments
 (0)