<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libstd/sync/mpsc/sync.rs, branch perf-tmp</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=perf-tmp'/>
<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>Bump to 1.46</title>
<updated>2020-06-03T19:27:51+00:00</updated>
<author>
<name>Mark Rousskov</name>
<email>mark.simulacrum@gmail.com</email>
</author>
<published>2020-06-03T19:15:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=71393422495b8d3c7a6e4ded3e64adaec45dca6d'/>
<id>urn:sha1:71393422495b8d3c7a6e4ded3e64adaec45dca6d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make abort intrinsic safe, and correct its documentation</title>
<updated>2020-05-17T09:23:42+00:00</updated>
<author>
<name>Ralf Jung</name>
<email>post@ralfj.de</email>
</author>
<published>2020-05-17T09:06:59+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=5980d972d1911225e38e98fe81974973349793a0'/>
<id>urn:sha1:5980d972d1911225e38e98fe81974973349793a0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Avoid unused Option::map results</title>
<updated>2020-04-24T20:58:41+00:00</updated>
<author>
<name>Josh Stone</name>
<email>jistone@redhat.com</email>
</author>
<published>2020-04-24T20:58:41+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2325c209257a8ce6c11200ebfc152907566f7a04'/>
<id>urn:sha1:2325c209257a8ce6c11200ebfc152907566f7a04</id>
<content type='text'>
These are changes that would be needed if we add `#[must_use]` to
`Option::map`, per #71484.
</content>
</entry>
<entry>
<title>Stop importing integer modules in libstd</title>
<updated>2020-04-05T09:22:01+00:00</updated>
<author>
<name>Linus Färnstrand</name>
<email>faern@faern.net</email>
</author>
<published>2020-04-04T16:03:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=101085ad9fd26a5e18f4c76dcc72b34d8edbdbe6'/>
<id>urn:sha1:101085ad9fd26a5e18f4c76dcc72b34d8edbdbe6</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>Auto merge of #60340 - mgeier:cap-vs-capacity, r=alexcrichton</title>
<updated>2019-07-25T18:45:42+00:00</updated>
<author>
<name>bors</name>
<email>bors@rust-lang.org</email>
</author>
<published>2019-07-25T18:45:42+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=890881f8f4c77e8670d4b32104c0325fcfefc90f'/>
<id>urn:sha1:890881f8f4c77e8670d4b32104c0325fcfefc90f</id>
<content type='text'>
Rename .cap() methods to .capacity()

As mentioned in #60316, there are a few `.cap()` methods, which seem out-of-place because such methods are called `.capacity()` in the rest of the code.

This PR renames them to `.capacity()` but leaves `RawVec::cap()` in there for backwards compatibility.

I didn't try to mark the old version as "deprecated", because I guess this would cause too much noise.
</content>
</entry>
<entry>
<title>Rollup merge of #62123 - jeremystucki:needless_lifetimes_std, r=alexcrichton</title>
<updated>2019-07-05T11:52:58+00:00</updated>
<author>
<name>Mazdak Farrokhzad</name>
<email>twingoow@gmail.com</email>
</author>
<published>2019-07-05T11:52:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0f92eb8a4a7d8715381f5b5d748d22315f6ff9c7'/>
<id>urn:sha1:0f92eb8a4a7d8715381f5b5d748d22315f6ff9c7</id>
<content type='text'>
 Remove needless lifetimes (std)

Split from #62039
</content>
</entry>
<entry>
<title>Convert more usages over</title>
<updated>2019-07-02T03:21:12+00:00</updated>
<author>
<name>Chris Gregory</name>
<email>czipperz@gmail.com</email>
</author>
<published>2019-06-30T18:30:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=636f5e6d1120c2bfc264687fbe1e77312c8d2979'/>
<id>urn:sha1:636f5e6d1120c2bfc264687fbe1e77312c8d2979</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove needless lifetimes</title>
<updated>2019-07-01T10:15:27+00:00</updated>
<author>
<name>Jeremy Stucki</name>
<email>jeremy@myelin.ch</email>
</author>
<published>2019-06-25T17:43:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=47ea8ae0223434e917ce840a963b495019bbe4d1'/>
<id>urn:sha1:47ea8ae0223434e917ce840a963b495019bbe4d1</id>
<content type='text'>
</content>
</entry>
</feed>
