<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/prelude, branch 1.43.0</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=1.43.0</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=1.43.0'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2019-11-30T02:43:27+00:00</updated>
<entry>
<title>Format libstd with rustfmt</title>
<updated>2019-11-30T02:43:27+00:00</updated>
<author>
<name>David Tolnay</name>
<email>dtolnay@gmail.com</email>
</author>
<published>2019-11-27T18:29:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=4436c9d35498e7ae3da261f6141d6d73b915e1e8'/>
<id>urn:sha1:4436c9d35498e7ae3da261f6141d6d73b915e1e8</id>
<content type='text'>
This commit applies rustfmt with rust-lang/rust's default settings to
files in src/libstd *that are not involved in any currently open PR* to
minimize merge conflicts. THe list of files involved in open PRs was
determined by querying GitHub's GraphQL API with this script:
https://gist.github.com/dtolnay/aa9c34993dc051a4f344d1b10e4487e8

With the list of files from the script in outstanding_files, the
relevant commands were:

    $ find src/libstd -name '*.rs' \
        | xargs rustfmt --edition=2018 --unstable-features --skip-children
    $ rg libstd outstanding_files | xargs git checkout --

Repeating this process several months apart should get us coverage of
most of the rest of libstd.

To confirm no funny business:

    $ git checkout $THIS_COMMIT^
    $ git show --pretty= --name-only $THIS_COMMIT \
        | xargs rustfmt --edition=2018 --unstable-features --skip-children
    $ git diff $THIS_COMMIT  # there should be no difference
</content>
</entry>
<entry>
<title>Remove `__rust_unstable_column`</title>
<updated>2019-08-15T19:58:57+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-08-15T19:58:57+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=263e3c59505a16e78b757e0ead3928a3e961a8ab'/>
<id>urn:sha1:263e3c59505a16e78b757e0ead3928a3e961a8ab</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Handle cfg(bootstrap) throughout</title>
<updated>2019-08-14T09:39:53+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2019-08-11T16:55:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2601c864878412814134f417b7a738e5ee8898f2'/>
<id>urn:sha1:2601c864878412814134f417b7a738e5ee8898f2</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove derives `Encodable`/`Decodable` and unstabilize attribute `#[bench]`</title>
<updated>2019-07-31T18:27:59+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-07-27T12:06:49+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=73dae4eaf99c06f54b6cf642d18cc1bd3c30ead8'/>
<id>urn:sha1:73dae4eaf99c06f54b6cf642d18cc1bd3c30ead8</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Introduce built-in macros through libcore</title>
<updated>2019-07-26T10:09:54+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2019-06-20T08:52:31+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8eaf17bca2674293eba0ea10056d5c77b6352086'/>
<id>urn:sha1:8eaf17bca2674293eba0ea10056d5c77b6352086</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Replace SliceConcatExt trait with inherent methods and SliceConcat helper trait</title>
<updated>2019-07-05T09:49:30+00:00</updated>
<author>
<name>Simon Sapin</name>
<email>simon.sapin@exyr.org</email>
</author>
<published>2019-07-05T09:38:40+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e808d921ddc0ad81a200934fc4caabc34094afe5'/>
<id>urn:sha1:e808d921ddc0ad81a200934fc4caabc34094afe5</id>
<content type='text'>
Before this change `SliceConcatExt` was an unstable extension trait
with stable methods. It was in the libstd prelude, so that its methods
could be used on the stable channel.

This replaces it with inherent methods,
which can be used without any addition to the prelude.
Since the methods are stable and very generic
(with for example a return type that depends on the types of parameters),
an helper trait is still needed.
But now that trait does not need to be in scope for the methods to be used.

Removing this depedency on the libstd prelude allows the methods to be used
in `#![no_std]` crate that use liballoc, which does not have its own
implicitly-imported prelude.
</content>
</entry>
<entry>
<title>libstd =&gt; 2018</title>
<updated>2019-02-27T19:06:15+00:00</updated>
<author>
<name>Taiki Endo</name>
<email>te316e89@gmail.com</email>
</author>
<published>2019-02-10T19:23:21+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=93b6d9e086c6910118a57e4332c9448ab550931f'/>
<id>urn:sha1:93b6d9e086c6910118a57e4332c9448ab550931f</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Convert old doc links to current edition</title>
<updated>2019-02-13T14:39:25+00:00</updated>
<author>
<name>Lzu Tao</name>
<email>taolzu@gmail.com</email>
</author>
<published>2019-01-23T03:55:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e7f8e63ed425cef77a9ad43e463b39009c1a495a'/>
<id>urn:sha1:e7f8e63ed425cef77a9ad43e463b39009c1a495a</id>
<content type='text'>
Use footnote style to bypass the tidy check
</content>
</entry>
<entry>
<title>Document Unpin in std::prelude documentation</title>
<updated>2019-01-16T23:39:15+00:00</updated>
<author>
<name>Konrad Borowski</name>
<email>konrad@borowski.pw</email>
</author>
<published>2019-01-16T23:39:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e4e888534eae603dfd0d9f9e75e8bb21d5e35f06'/>
<id>urn:sha1:e4e888534eae603dfd0d9f9e75e8bb21d5e35f06</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Add Unpin to std prelude, not just core</title>
<updated>2018-12-26T20:20:38+00:00</updated>
<author>
<name>Taylor Cramer</name>
<email>cramertj@google.com</email>
</author>
<published>2018-12-26T20:20:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=11f4d3e40ef663e9365fb70f36cf22da3b673de0'/>
<id>urn:sha1:11f4d3e40ef663e9365fb70f36cf22da3b673de0</id>
<content type='text'>
</content>
</entry>
</feed>
