summary refs log tree commit diff
path: root/src/libstd/sys_common/poison.rs
AgeCommit message (Collapse)AuthorLines
2019-11-29Format libstd with rustfmtDavid Tolnay-19/+25
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
2019-03-31libstd: deny(elided_lifetimes_in_paths)Mazdak Farrokhzad-4/+4
2019-02-28libstd => 2018Taiki Endo-4/+4
2018-12-25Remove licensesMark Rousskov-10/+0
2018-11-06refactor: use shorthand fieldsteresy-1/+1
2018-07-10Deny bare trait objects in `src/libstd`.ljedrz-1/+1
2018-02-17fix more typos found by codespell.Matthias Krüger-1/+1
2017-09-23docs improvement std::sync::{PoisonError, TryLockError}Lucas Morales-2/+55
2017-09-15Fix incorrect `into_inner` link in docs.Corey Farwell-1/+1
Fixes https://github.com/rust-lang/rust/issues/42373.
2017-04-08Adding links around Sender/SyncSender/Receiver errors; Adding more ↵projektir-1/+3
documentation to channel() and sync_channel(); adding more links #29377
2017-02-28Add missing url in sync structsGuillaume Gomez-7/+22
2016-11-01std: Move sys_common to libstd/sys_commonBrian Anderson-0/+199
Make the directory structure reflect the module structure. I've always found the existing structure confusing.