<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/tests/rustdoc-ui/doctest, branch 1.84.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.84.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.84.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-01-02T22:28:32+00:00</updated>
<entry>
<title>Remove unneeded handling of backlines in doctest attributes</title>
<updated>2025-01-02T22:28:32+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2024-12-16T16:59:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=dc1a9f275c0caaf8c080c7cc6f9809a44db4ac2a'/>
<id>urn:sha1:dc1a9f275c0caaf8c080c7cc6f9809a44db4ac2a</id>
<content type='text'>
(cherry picked from commit c367cc3ef5648d5695fdb795cc66edbff88b4ce9)
</content>
</entry>
<entry>
<title>Also handle cases where attributes are unclosed</title>
<updated>2025-01-02T22:28:32+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2024-12-16T12:59:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=32ee5bc6a33092f4b642631e425ddbeeec96fb08'/>
<id>urn:sha1:32ee5bc6a33092f4b642631e425ddbeeec96fb08</id>
<content type='text'>
(cherry picked from commit 23839853425e8c0c80d0aadb32bf5b4ba1bdf64b)
</content>
</entry>
<entry>
<title>Add ui regression test for #134221</title>
<updated>2025-01-02T22:28:32+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2024-12-13T15:20:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e09de50ce0ded8b290098874f9d778f521b8b0cc'/>
<id>urn:sha1:e09de50ce0ded8b290098874f9d778f521b8b0cc</id>
<content type='text'>
(cherry picked from commit 9c4a61ff52a635ef96bd92a2ff1fad4a8bb2ce73)
</content>
</entry>
<entry>
<title>Rollup merge of #132210 - notriddle:notriddle/doctest-span-hack, r=GuillaumeGomez</title>
<updated>2024-10-30T21:01:37+00:00</updated>
<author>
<name>Jubilee</name>
<email>workingjubilee@gmail.com</email>
</author>
<published>2024-10-30T21:01:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=62ba25de393e1d621e22d1454a7371017f43413a'/>
<id>urn:sha1:62ba25de393e1d621e22d1454a7371017f43413a</id>
<content type='text'>
rustdoc: make doctest span tweak a 2024 edition change

Fixes #132203

This is a compatibility hack, because I think the new behavior is better. When an A `include_str!` B, and B `include_str!` C, the path to C should be resolved relative to B, not A. That's how `include!` itself works, so that's how `include_str!` with should work.
</content>
</entry>
<entry>
<title>Ignore Windows due to its differing path syntax</title>
<updated>2024-10-30T19:39:05+00:00</updated>
<author>
<name>Michael Howell</name>
<email>michael@notriddle.com</email>
</author>
<published>2024-10-30T06:21:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ac7de1a0d925af4504f9fb100be071e2fd346d13'/>
<id>urn:sha1:ac7de1a0d925af4504f9fb100be071e2fd346d13</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rollup merge of #131096 - GuillaumeGomez:rm-no_unused, r=notriddle</title>
<updated>2024-10-30T14:22:04+00:00</updated>
<author>
<name>许杰友 Jieyou Xu (Joe)</name>
<email>39484203+jieyouxu@users.noreply.github.com</email>
</author>
<published>2024-10-30T14:22:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a864e30269091791af5d45f0895dab2e2493e95c'/>
<id>urn:sha1:a864e30269091791af5d45f0895dab2e2493e95c</id>
<content type='text'>
rustdoc: Remove usage of `allow(unused)` attribute on `no_run` merged doctests

Fixes [#130681](https://github.com/rust-lang/rust/issues/130681).

It fixes the behaviour difference with the current doctests.

r? ``@notriddle``
</content>
</entry>
<entry>
<title>rustdoc: make doctest span tweak a 2024 edition change</title>
<updated>2024-10-27T00:56:38+00:00</updated>
<author>
<name>Michael Howell</name>
<email>michael@notriddle.com</email>
</author>
<published>2024-10-27T00:46:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=1819b4fa2339fcf416c8f3856f19190cab8c54ff'/>
<id>urn:sha1:1819b4fa2339fcf416c8f3856f19190cab8c54ff</id>
<content type='text'>
Fixes #132203

This is a compatibility hack, because I think the new behavior is better.
When an A `include_str!` B, and B `include_str!` C, the path to C should
be resolved relative to B, not A. That's how `include!` itself works,
so that's how `include_str!` with should work.
</content>
</entry>
<entry>
<title>Add regression test for #131893</title>
<updated>2024-10-24T19:35:15+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume1.gomez@gmail.com</email>
</author>
<published>2024-10-24T13:05:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=aab2b6747db09b8572f879bd74dbee701287536d'/>
<id>urn:sha1:aab2b6747db09b8572f879bd74dbee701287536d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove deprecation note in the `non_local_definitions` warning</title>
<updated>2024-10-11T19:21:32+00:00</updated>
<author>
<name>Urgau</name>
<email>urgau@numericable.fr</email>
</author>
<published>2024-10-11T19:21:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=77b3065ed242c497af14afdf18467cf6b8b44b1e'/>
<id>urn:sha1:77b3065ed242c497af14afdf18467cf6b8b44b1e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add regression tests for #130681</title>
<updated>2024-10-01T15:08:01+00:00</updated>
<author>
<name>Guillaume Gomez</name>
<email>guillaume.gomez@huawei.com</email>
</author>
<published>2024-10-01T15:08:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b073ddcce51aafde86e888d27c640f6d506e0d9d'/>
<id>urn:sha1:b073ddcce51aafde86e888d27c640f6d506e0d9d</id>
<content type='text'>
</content>
</entry>
</feed>
