<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/ffi, branch stable</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=stable</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=stable'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2020-07-28T00:51:13+00:00</updated>
<entry>
<title>mv std libs to library/</title>
<updated>2020-07-28T00:51:13+00:00</updated>
<author>
<name>mark</name>
<email>markm@cs.wisc.edu</email>
</author>
<published>2020-06-12T02:31:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2c31b45ae878b821975c4ebd94cc1e49f6073fd0'/>
<id>urn:sha1:2c31b45ae878b821975c4ebd94cc1e49f6073fd0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Update stability attribute for CStr indexing</title>
<updated>2020-07-18T19:16:25+00:00</updated>
<author>
<name>David Tolnay</name>
<email>dtolnay@gmail.com</email>
</author>
<published>2020-07-18T19:16:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=30b8835d1d0f531aa1d5875cde5ffae347177fd3'/>
<id>urn:sha1:30b8835d1d0f531aa1d5875cde5ffae347177fd3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>impl Index&lt;RangeFrom&lt;usize&gt;&gt; for CStr</title>
<updated>2020-07-18T19:14:32+00:00</updated>
<author>
<name>1011X</name>
<email>1011XXXXX@gmail.com</email>
</author>
<published>2020-07-04T02:11:10+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=f08aae6a2bbd5c509029da592ea3a5634a7bc743'/>
<id>urn:sha1:f08aae6a2bbd5c509029da592ea3a5634a7bc743</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rollup merge of #73139 - poliorcetics:cstring-from-vec-with-nul, r=dtolnay</title>
<updated>2020-06-15T10:01:09+00:00</updated>
<author>
<name>Ralf Jung</name>
<email>post@ralfj.de</email>
</author>
<published>2020-06-15T10:01:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ec6fe42dd451097f44ff0aeab2ccd23b7dd2571f'/>
<id>urn:sha1:ec6fe42dd451097f44ff0aeab2ccd23b7dd2571f</id>
<content type='text'>
Add methods to go from a nul-terminated Vec&lt;u8&gt; to a CString

Fixes #73100.

Doc tests have been written and the documentation on the error type
updated too.

I used `#[stable(feature = "cstring_from_vec_with_nul", since = "1.46.0")]` but I don't know if the version is correct.
</content>
</entry>
<entry>
<title>Update to use the new error type and correctly compile the doc tests</title>
<updated>2020-06-14T21:22:36+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-14T21:22:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=47cc5cca7e64a434fa15680b7dcc621ca6f1abbf'/>
<id>urn:sha1:47cc5cca7e64a434fa15680b7dcc621ca6f1abbf</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a new error type for the new method</title>
<updated>2020-06-14T21:21:40+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-14T21:21:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=685f06612dc8842b734181e380eae0f9b1a9483f'/>
<id>urn:sha1:685f06612dc8842b734181e380eae0f9b1a9483f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Removing the TryFrom impl</title>
<updated>2020-06-14T17:31:11+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-14T17:21:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5f4eb27a0dc5d17e4a74f1a2d71a8f5a30916e3a'/>
<id>urn:sha1:5f4eb27a0dc5d17e4a74f1a2d71a8f5a30916e3a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix the link in the TryFrom impl</title>
<updated>2020-06-11T14:55:03+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-11T14:55:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=6b955268d71907d9049a399a0e0a33f6448e1221'/>
<id>urn:sha1:6b955268d71907d9049a399a0e0a33f6448e1221</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add a TryFrom&lt;Vec&lt;u8&gt;&gt; impl that mirror from_vec_with_nul</title>
<updated>2020-06-10T22:36:55+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-10T21:13:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7f3bb398fa90d68c737dd7e00a3813e0620ba472'/>
<id>urn:sha1:7f3bb398fa90d68c737dd7e00a3813e0620ba472</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Move to unstable, linking the issue</title>
<updated>2020-06-09T20:15:05+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-09T20:15:05+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b03164e6679284b984437fe82092682cf7c984f8'/>
<id>urn:sha1:b03164e6679284b984437fe82092682cf7c984f8</id>
<content type='text'>
</content>
</entry>
</feed>
