<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/prelude, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<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 the doc for std::prelude, removing the "technical part" section</title>
<updated>2020-06-19T19:19:17+00:00</updated>
<author>
<name>Alexis Bourget</name>
<email>alexis.bourget@gmail.com</email>
</author>
<published>2020-06-19T19:19:17+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=8f0bd5ffe66bb08d00158c5edf36902f1a356045'/>
<id>urn:sha1:8f0bd5ffe66bb08d00158c5edf36902f1a356045</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump bootstrap compiler</title>
<updated>2020-04-25T13:25:33+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2020-04-22T19:45:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=93eed402adbe9e7a532995500d50716d52eefee9'/>
<id>urn:sha1:93eed402adbe9e7a532995500d50716d52eefee9</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Deprecate the asm! macro</title>
<updated>2020-04-15T17:09:00+00:00</updated>
<author>
<name>Amanieu d'Antras</name>
<email>amanieu@gmail.com</email>
</author>
<published>2020-04-10T16:34:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ce83b49d161b9375849345be722e86c5417dfdda'/>
<id>urn:sha1:ce83b49d161b9375849345be722e86c5417dfdda</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Rename asm! to llvm_asm!</title>
<updated>2020-03-26T15:49:22+00:00</updated>
<author>
<name>Amanieu d'Antras</name>
<email>amanieu@gmail.com</email>
</author>
<published>2020-01-14T13:40:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=d162d096ddf7972819e5b700890726a2ea85f272'/>
<id>urn:sha1:d162d096ddf7972819e5b700890726a2ea85f272</id>
<content type='text'>
asm! is left as a wrapper around llvm_asm! to maintain compatibility.
</content>
</entry>
<entry>
<title>builtin_macros: Add attribute macro `#[cfg_accessible(path)]`</title>
<updated>2020-03-09T22:02:13+00:00</updated>
<author>
<name>Vadim Petrochenkov</name>
<email>vadim.petrochenkov@gmail.com</email>
</author>
<published>2020-03-09T21:56:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2e6528961c44a4f3841fd319af71f1d1a6af029c'/>
<id>urn:sha1:2e6528961c44a4f3841fd319af71f1d1a6af029c</id>
<content type='text'>
</content>
</entry>
<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>
</feed>
