Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
bb8b741
Port `#[export_stable]` to the new attribute system
GrigorenkoPV Jun 16, 2025
99a9fe1
Port `#[ffi_const]` to the new attribute system
GrigorenkoPV Jun 23, 2025
5d7771e
Port `#[ffi_pure]` to the new attribute system
GrigorenkoPV Jun 23, 2025
4f0b0b0
Port `#[rustc_std_internal_symbol]` to the new attribute system
GrigorenkoPV Jul 4, 2025
429deed
Port #[rustc_dummy]
mejrs Jul 7, 2025
7ec8c89
Update intro blurb in `wasm32-wasip1` docs
alexcrichton Jul 7, 2025
6254afa
Clarify the meaning of `AttributeOrder::KeepFirst` and `AttributeOrde…
Periodic1911 Jul 7, 2025
62951c2
fix: Remove newline from multiple crate versions note
Muscraft Jul 8, 2025
a58a423
Add target maintainer information for mips64-unknown-linux-muslabi64
Gelbpunkt Jul 8, 2025
7170412
Don't mark `#[target_feature]` safe fns as unsafe in rustdoc JSON.
obi1kenobi Jul 7, 2025
bc9b313
Rollup merge of #143402 - GrigorenkoPV:attributes/link_attrs, r=jdons…
matthiaskrgr Jul 8, 2025
cbf7f80
Rollup merge of #143555 - obi1kenobi:pg/target-feature-not-unsafe-rus…
matthiaskrgr Jul 8, 2025
19a2128
Rollup merge of #143593 - mejrs:dummy, r=jdonszelmann
matthiaskrgr Jul 8, 2025
2c92474
Rollup merge of #143600 - alexcrichton:wasm32-wasip1-doc-reword, r=ji…
matthiaskrgr Jul 8, 2025
a151620
Rollup merge of #143603 - Periodic1911:clarify_keepfistlast, r=compil…
matthiaskrgr Jul 8, 2025
38bfba6
Rollup merge of #143620 - Muscraft:remove-newline, r=compiler-errors
matthiaskrgr Jul 8, 2025
f3226b4
Rollup merge of #143622 - Gelbpunkt:mips64-unknown-linux-muslabi64-ta…
matthiaskrgr Jul 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: Remove newline from multiple crate versions note
  • Loading branch information
Muscraft committed Jul 8, 2025
commit 62951c2e07dea61ec20fd6f6e849400f4cd194c3
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,7 @@ impl<'a, 'tcx> TypeErrCtxt<'a, 'tcx> {
StringPart::highlighted("multiple different versions".to_string()),
StringPart::normal(" of crate `".to_string()),
StringPart::highlighted(format!("{crate_name}")),
StringPart::normal("` in the dependency graph\n".to_string()),
StringPart::normal("` in the dependency graph".to_string()),
],
);
if points_at_type {
Expand Down
Loading