about summary refs log tree commit diff
path: root/src/libstd/tests
AgeCommit message (Collapse)AuthorLines
2020-07-27mv std libs to library/mark-173/+0
2020-05-21Enable ARM TME (Transactional Memory Extensions)Mahmut Bulut-0/+1
2020-02-01stdarch: update submodule.Tyler Lanphear-0/+1
2019-12-22Format the worldMark Rousskov-10/+3
2019-11-29Format libstd with rustfmtDavid Tolnay-10/+5
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-09-06Upgrade rand to 0.7Mateusz MikuĊ‚a-1/+1
2019-02-28libstd => 2018Taiki Endo-2/+0
2019-01-29Update stdsimdgnzlbg-0/+100
2018-12-25Remove licensesMark Rousskov-10/+0
2018-09-04Breaking change upgradesMark Rousskov-3/+4
2018-07-27Use str::repeatShotaro Yamada-2/+1
2018-03-11Update Cargo submoduleAlex Crichton-0/+95
Required moving all fulldeps tests depending on `rand` to different locations as now there's multiple `rand` crates that can't be implicitly linked against.