<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/library/std/src/net/tcp, branch beta</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=beta</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=beta'/>
<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>Update test for SGX now implementing read_buf</title>
<updated>2025-03-18T00:18:05+00:00</updated>
<author>
<name>Thalia Archibald</name>
<email>thalia@archibald.dev</email>
</author>
<published>2025-03-18T00:18:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=bcac931956f7a5c271914f8e1973b8195eedb498'/>
<id>urn:sha1:bcac931956f7a5c271914f8e1973b8195eedb498</id>
<content type='text'>
In #108326, `read_buf` was implemented for a variety of types, but SGX
was saved for later. Update a test from then, now that #137355
implemented it for SGX types.
</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>Reformat `use` declarations.</title>
<updated>2024-07-28T22:26:52+00:00</updated>
<author>
<name>Nicholas Nethercote</name>
<email>n.nethercote@gmail.com</email>
</author>
<published>2024-07-28T22:13:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=84ac80f1921afc243d71fd0caaa4f2838c294102'/>
<id>urn:sha1:84ac80f1921afc243d71fd0caaa4f2838c294102</id>
<content type='text'>
The previous commit updated `rustfmt.toml` appropriately. This commit is
the outcome of running `x fmt --all` with the new formatting options.
</content>
</entry>
<entry>
<title>Replace `MaybeUninit::uninit_array()` with array repeat expression.</title>
<updated>2024-06-24T17:23:50+00:00</updated>
<author>
<name>Kevin Reid</name>
<email>kpreid@switchb.org</email>
</author>
<published>2024-05-13T04:37:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=13fca73f4937fe4bb318321525a0fd666e9da16e'/>
<id>urn:sha1:13fca73f4937fe4bb318321525a0fd666e9da16e</id>
<content type='text'>
This is possible now that inline const blocks are stable; the idea was
even mentioned as an alternative when `uninit_array()` was added:
&lt;https://github.com/rust-lang/rust/pull/65580#issuecomment-544200681&gt;

&gt; if it’s stabilized soon enough maybe it’s not worth having a
&gt; standard library method that will be replaceable with
&gt; `let buffer = [MaybeUninit::&lt;T&gt;::uninit(); $N];`

Const array repetition and inline const blocks are now stable (in the
next release), so that circumstance has come to pass, and we no longer
have reason to want `uninit_array()` other than convenience. Therefore,
let’s evaluate the inconvenience by not using `uninit_array()` in
the standard library, before potentially deleting it entirely.
</content>
</entry>
<entry>
<title>fix `close_read_wakes_up` test</title>
<updated>2024-03-06T17:01:09+00:00</updated>
<author>
<name>Lukas Markeffsky</name>
<email>@</email>
</author>
<published>2024-03-06T17:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=9abe47e3720d8fc236464a9295389fc0b21f67e5'/>
<id>urn:sha1:9abe47e3720d8fc236464a9295389fc0b21f67e5</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>Remove useless unit tests</title>
<updated>2023-06-20T10:47:31+00:00</updated>
<author>
<name>Eval EXEC</name>
<email>execvy@gmail.com</email>
</author>
<published>2023-06-20T10:47:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=a0c757a13f5a0090f8cb6e1a7ffba6b94dfc2fbf'/>
<id>urn:sha1:a0c757a13f5a0090f8cb6e1a7ffba6b94dfc2fbf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Ignore `connect_timeout` unit test on SGX platform</title>
<updated>2023-06-20T10:43:12+00:00</updated>
<author>
<name>Eval EXEC</name>
<email>execvy@gmail.com</email>
</author>
<published>2023-06-20T10:43:12+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=30e1c1a53c8354d53551f4640a41938a157b4fd0'/>
<id>urn:sha1:30e1c1a53c8354d53551f4640a41938a157b4fd0</id>
<content type='text'>
Co-authored-by: Chris Denton &lt;christophersdenton@gmail.com&gt;</content>
</entry>
<entry>
<title>Add unit test to connect to an unreachable address</title>
<updated>2023-06-18T07:59:25+00:00</updated>
<author>
<name>Eval EXEC</name>
<email>execvy@gmail.com</email>
</author>
<published>2023-06-18T07:41:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f65b5d0ddf1ae0a551756424503c3cfe0e7ad8a6'/>
<id>urn:sha1:f65b5d0ddf1ae0a551756424503c3cfe0e7ad8a6</id>
<content type='text'>
Signed-off-by: Eval EXEC &lt;execvy@gmail.com&gt;
</content>
</entry>
</feed>
