Skip to content

Commit 62aaf1d

Browse files
authored
Unrolled build for rust-lang#119448
Rollup merge of rust-lang#119448 - klensy:annotate-snippets-0.10, r=davidtwco annotate-snippets: update to 0.10 Ports `annotate-snippets` to 0.10, temporary dupes versions; other crates left that depends on 0.9 is `ui_test` and `rustfmt`.
2 parents 4d31ed4 + 46cf55a commit 62aaf1d

File tree

6 files changed

+25
-24
lines changed

6 files changed

+25
-24
lines changed

Cargo.lock

+16-6
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,16 @@ dependencies = [
119119
"yansi-term",
120120
]
121121

122+
[[package]]
123+
name = "annotate-snippets"
124+
version = "0.10.1"
125+
source = "registry+https://github.com/rust-lang/crates.io-index"
126+
checksum = "0a433302f833baa830c0092100c481c7ea768c5981a3c36f549517a502f246dd"
127+
dependencies = [
128+
"anstyle",
129+
"unicode-width",
130+
]
131+
122132
[[package]]
123133
name = "ansi_term"
124134
version = "0.12.1"
@@ -3771,7 +3781,7 @@ dependencies = [
37713781
name = "rustc_errors"
37723782
version = "0.0.0"
37733783
dependencies = [
3774-
"annotate-snippets",
3784+
"annotate-snippets 0.10.1",
37753785
"derive_setters",
37763786
"rustc_ast",
37773787
"rustc_ast_pretty",
@@ -3831,7 +3841,7 @@ dependencies = [
38313841
name = "rustc_fluent_macro"
38323842
version = "0.0.0"
38333843
dependencies = [
3834-
"annotate-snippets",
3844+
"annotate-snippets 0.10.1",
38353845
"fluent-bundle",
38363846
"fluent-syntax",
38373847
"proc-macro2",
@@ -4738,7 +4748,7 @@ dependencies = [
47384748
name = "rustfmt-nightly"
47394749
version = "1.7.0"
47404750
dependencies = [
4741-
"annotate-snippets",
4751+
"annotate-snippets 0.9.1",
47424752
"anyhow",
47434753
"bytecount",
47444754
"cargo_metadata 0.15.4",
@@ -5728,7 +5738,7 @@ version = "0.21.2"
57285738
source = "registry+https://github.com/rust-lang/crates.io-index"
57295739
checksum = "aaf4bf7c184b8dfc7a4d3b90df789b1eb992ee42811cd115f32a7a1eb781058d"
57305740
dependencies = [
5731-
"annotate-snippets",
5741+
"annotate-snippets 0.9.1",
57325742
"anyhow",
57335743
"bstr",
57345744
"cargo-platform",
@@ -5859,9 +5869,9 @@ checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
58595869

58605870
[[package]]
58615871
name = "unicode-width"
5862-
version = "0.1.10"
5872+
version = "0.1.11"
58635873
source = "registry+https://github.com/rust-lang/crates.io-index"
5864-
checksum = "c0edd1e5b14653f783770bce4a4dabb4a5108a5370a5f5d8cfe8710c361f6c8b"
5874+
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
58655875
dependencies = [
58665876
"compiler_builtins",
58675877
"rustc-std-workspace-core",

compiler/rustc_errors/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ edition = "2021"
55

66
[dependencies]
77
# tidy-alphabetical-start
8-
annotate-snippets = "0.9"
8+
annotate-snippets = "0.10"
99
derive_setters = "0.1.6"
1010
rustc_ast = { path = "../rustc_ast" }
1111
rustc_ast_pretty = { path = "../rustc_ast_pretty" }

compiler/rustc_errors/src/annotate_snippet_emitter_writer.rs

+3-8
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ use crate::{
1212
CodeSuggestion, Diagnostic, DiagnosticId, DiagnosticMessage, Emitter, FluentBundle,
1313
LazyFallbackBundle, Level, MultiSpan, Style, SubDiagnostic,
1414
};
15-
use annotate_snippets::display_list::{DisplayList, FormatOptions};
16-
use annotate_snippets::snippet::*;
15+
use annotate_snippets::{Annotation, AnnotationType, Renderer, Slice, Snippet, SourceAnnotation};
1716
use rustc_data_structures::sync::Lrc;
1817
use rustc_error_messages::FluentArgs;
1918
use rustc_span::source_map::SourceMap;
@@ -190,11 +189,6 @@ impl AnnotateSnippetEmitter {
190189
annotation_type: annotation_type_for_level(*level),
191190
}),
192191
footer: vec![],
193-
opt: FormatOptions {
194-
color: true,
195-
anonymized_line_numbers: self.ui_testing,
196-
margin: None,
197-
},
198192
slices: annotated_files
199193
.iter()
200194
.map(|(file_name, source, line_index, annotations)| {
@@ -222,7 +216,8 @@ impl AnnotateSnippetEmitter {
222216
// FIXME(#59346): Figure out if we can _always_ print to stderr or not.
223217
// `emitter.rs` has the `Destination` enum that lists various possible output
224218
// destinations.
225-
eprintln!("{}", DisplayList::from(snippet))
219+
let renderer = Renderer::plain().anonymized_line_numbers(self.ui_testing);
220+
eprintln!("{}", renderer.render(snippet))
226221
}
227222
// FIXME(#59346): Is it ok to return None if there's no source_map?
228223
}

compiler/rustc_fluent_macro/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ proc-macro = true
88

99
[dependencies]
1010
# tidy-alphabetical-start
11-
annotate-snippets = "0.9"
11+
annotate-snippets = "0.10"
1212
fluent-bundle = "0.15.2"
1313
fluent-syntax = "0.11"
1414
proc-macro2 = "1"

compiler/rustc_fluent_macro/src/fluent.rs

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
1-
use annotate_snippets::{
2-
display_list::DisplayList,
3-
snippet::{Annotation, AnnotationType, Slice, Snippet, SourceAnnotation},
4-
};
1+
use annotate_snippets::{Annotation, AnnotationType, Renderer, Slice, Snippet, SourceAnnotation};
52
use fluent_bundle::{FluentBundle, FluentError, FluentResource};
63
use fluent_syntax::{
74
ast::{
@@ -179,10 +176,9 @@ pub(crate) fn fluent_messages(input: proc_macro::TokenStream) -> proc_macro::Tok
179176
range: (pos.start, pos.end - 1),
180177
}],
181178
}],
182-
opt: Default::default(),
183179
};
184-
let dl = DisplayList::from(snippet);
185-
eprintln!("{dl}\n");
180+
let renderer = Renderer::plain();
181+
eprintln!("{}\n", renderer.render(snippet));
186182
}
187183

188184
return failed(&crate_name);

src/tools/tidy/src/deps.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
194194
"aho-corasick",
195195
"allocator-api2", // FIXME: only appears in Cargo.lock due to https://github.com/rust-lang/cargo/issues/10801
196196
"annotate-snippets",
197+
"anstyle",
197198
"ar_archive_writer",
198199
"arrayvec",
199200
"autocfg",
@@ -391,7 +392,6 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
391392
"windows_x86_64_gnullvm",
392393
"windows_x86_64_msvc",
393394
"writeable",
394-
"yansi-term", // this is a false-positive: it's only used by rustfmt, but because it's enabled through a feature, tidy thinks it's used by rustc as well.
395395
"yoke",
396396
"yoke-derive",
397397
"zerocopy",

0 commit comments

Comments
 (0)