<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/library/std/src/net/udp, branch master</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=master</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=master'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2025-09-08T14:58:43+00:00</updated>
<entry>
<title>std: make address resolution weirdness local to SGX</title>
<updated>2025-09-08T14:58:43+00:00</updated>
<author>
<name>joboet</name>
<email>jonasboettiger@icloud.com</email>
</author>
<published>2025-08-12T16:37:07+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=207a01e88f05f028f7a6c0db0d324fbedb8178a4'/>
<id>urn:sha1:207a01e88f05f028f7a6c0db0d324fbedb8178a4</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix test hangs on AIX</title>
<updated>2025-03-04T15:06:28+00:00</updated>
<author>
<name>Henry Jiang</name>
<email>henry.jiang1@ibm.com</email>
</author>
<published>2025-03-03T20:40:23+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2a7ad952a7a7120a76feadc72b24c40233aedf31'/>
<id>urn:sha1:2a7ad952a7a7120a76feadc72b24c40233aedf31</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix std tests for wasm32-wasip2 target</title>
<updated>2024-09-29T02:48:13+00:00</updated>
<author>
<name>Nicola Krumschmidt</name>
<email>git@nkcom.de</email>
</author>
<published>2024-09-04T00:18:32+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=87f17f3ccb69e9827562522ae1a38f84d2ba998a'/>
<id>urn:sha1:87f17f3ccb69e9827562522ae1a38f84d2ba998a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>remove redundant imports</title>
<updated>2023-12-10T02:56:22+00:00</updated>
<author>
<name>surechen</name>
<email>chenshuo17@huawei.com</email>
</author>
<published>2023-11-10T02:11:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=40ae34194c586eea3614d3216322053d2e8e7b37'/>
<id>urn:sha1:40ae34194c586eea3614d3216322053d2e8e7b37</id>
<content type='text'>
detects redundant imports that can be eliminated.

for #117772 :

In order to facilitate review and modification, split the checking code and
removing redundant imports code into two PR.
</content>
</entry>
<entry>
<title>Add QNX Neutrino support to libstd</title>
<updated>2023-02-28T14:59:47+00:00</updated>
<author>
<name>Florian Bartels</name>
<email>Florian.Bartels@elektrobit.com</email>
</author>
<published>2023-01-10T09:44:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=3ce2cd059f8f7c69d9e1fe26b95cec2bfd3c98a7'/>
<id>urn:sha1:3ce2cd059f8f7c69d9e1fe26b95cec2bfd3c98a7</id>
<content type='text'>
Co-authored-by: gh-tr &lt;troach@qnx.com&gt;
</content>
</entry>
<entry>
<title>Use implicit capture syntax in format_args</title>
<updated>2022-03-10T15:23:40+00:00</updated>
<author>
<name>T-O-R-U-S</name>
<email>bageliq@protonmail.com</email>
</author>
<published>2022-02-12T19:16:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=72a25d05bf1a4b155d74139ef700ff93af6d8e22'/>
<id>urn:sha1:72a25d05bf1a4b155d74139ef700ff93af6d8e22</id>
<content type='text'>
This updates the standard library's documentation to use the new syntax. The
documentation is worthwhile to update as it should be more idiomatic
(particularly for features like this, which are nice for users to get acquainted
with). The general codebase is likely more hassle than benefit to update: it'll
hurt git blame, and generally updates can be done by folks updating the code if
(and when) that makes things more readable with the new format.

A few places in the compiler and library code are updated (mostly just due to
already having been done when this commit was first authored).
</content>
</entry>
<entry>
<title>I/O safety.</title>
<updated>2021-08-19T19:02:39+00:00</updated>
<author>
<name>Dan Gohman</name>
<email>dev@sunfishcode.online</email>
</author>
<published>2021-07-01T04:44:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d15418586ca78ead4f87ad18fcffa3550c1b169e'/>
<id>urn:sha1:d15418586ca78ead4f87ad18fcffa3550c1b169e</id>
<content type='text'>
Introduce `OwnedFd` and `BorrowedFd`, and the `AsFd` trait, and
implementations of `AsFd`, `From&lt;OwnedFd&gt;` and `From&lt;T&gt; for OwnedFd`
for relevant types, along with Windows counterparts for handles and
sockets.

Tracking issue:
 - &lt;https://github.com/rust-lang/rust/issues/87074&gt;

RFC:
 - &lt;https://github.com/rust-lang/rfcs/blob/master/text/3128-io-safety.md&gt;
</content>
</entry>
<entry>
<title>Use is_ok() instead of empty Ok(_)</title>
<updated>2020-10-13T21:01:50+00:00</updated>
<author>
<name>wcampbell</name>
<email>wcampbell1995@gmail.com</email>
</author>
<published>2020-10-13T21:01:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=964a5ac962d32c280d036df42b2e747809939cc4'/>
<id>urn:sha1:964a5ac962d32c280d036df42b2e747809939cc4</id>
<content type='text'>
Signed-off-by: wcampbell &lt;wcampbell1995@gmail.com&gt;
</content>
</entry>
<entry>
<title>std: move "mod tests/benches" to separate files</title>
<updated>2020-08-31T02:56:59+00:00</updated>
<author>
<name>Lzu Tao</name>
<email>taolzu@gmail.com</email>
</author>
<published>2020-08-27T13:45:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a4e926daeeaedc9178846711daf1f4cb6ce505fb'/>
<id>urn:sha1:a4e926daeeaedc9178846711daf1f4cb6ce505fb</id>
<content type='text'>
Also doing fmt inplace as requested.
</content>
</entry>
</feed>
