about summary refs log tree commit diff
path: root/rustc_tools_util
AgeCommit message (Collapse)AuthorLines
2019-11-25Enable deny-warnings feature everywhere in CIflip1995-0/+6
2019-10-14new lints around `#[must_use]` fnsAndre Bogus-0/+3
`must_use_unit` lints unit-returning functions with a `#[must_use]` attribute, suggesting to remove it. `double_must_use` lints functions with a plain `#[must_use]` attribute, but which return a type which is already `#[must_use]`, so the attribute has no benefit. `must_use_candidate` is a pedantic lint that lints functions and methods that return some non-unit type that is not already `#[must_use]` and suggests to add the annotation.
2019-10-04Use new format of licensesMateusz Mikuła-1/+1
Co-Authored-By: lzutao <taolzu@gmail.com>
2019-08-01Update formattingMichael Wright-1/+0
2019-05-23clippy: bump rustc_tools util version to 0.2Matthias Krüger-1/+1
rustc_tools_util: fix typo in docs (readme)
2019-05-23rustc_tool_utils: bump version to 0.2.0Matthias Krüger-5/+5
2019-04-28rustc_tools_util: try to handle case of not having CFG_RELEASE_CHANNEL ↵Matthias Krüger-10/+33
better when getting compiler channel.
2019-02-10removing redundant closures in the whole projectGrzegorz-2/+2
2019-01-08Remove all copyright license headersPhilipp Hansch-10/+1
Discussion previously happened in https://github.com/rust-lang/rust/pull/43498
2019-01-02rustc_tool_utils: fix failure to create proper non-repo version string when ↵Matthias Krüger-11/+12
used in crates on crates.io, bump version
2018-12-25rustc_tools_util: add readmeMatthias Krüger-0/+58
2018-12-25rustc_tool_utils: expand Cargo.toml with a few keywords in preparation for ↵Matthias Krüger-0/+6
crates.io release
2018-11-27Run rustfmt on rustc_tools_utilflip1995-1/+0
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
2018-09-30remove cargo edition 2018 feature gate.Matthias Krüger-2/+0
Rust and the cargo used to bootstrap was updated in https://github.com/rust-lang/rust/pull/54601 which now has the 2018 edition stabilized.
2018-09-29rustc_tools_util: remove test and tool_lints features, both are actually unused.Matthias Krüger-3/+0
Fixes build with beta.
2018-09-15Revert "the cargo feature: edition 2018 is stabilized in current nightly"Eduard-Mihai Burtescu-0/+2
This reverts commit 404a09d61cf7bc8e5d4e92ae9052a4e10d2ff07d.
2018-09-14Reapply: "the cargo feature: edition 2018 is stabilized in current nightly"flip1995-2/+0
This reapplies commit 404a09d. Cargo got bumped in rust-lang/rust#54210
2018-09-13rustc_tools_util: clean up pedantic clippy warningsMatthias Krüger-31/+27
2018-09-10Revert "the cargo feature: edition 2018 is stabilized in current nightly"Oliver Schneider-0/+2
This reverts commit 404a09d61cf7bc8e5d4e92ae9052a4e10d2ff07d.
2018-09-10Merge pull request #3160 from matthiaskrgr/ed_2018Oliver S̶c̶h̶n̶e̶i̶d̶e̶r Scherer-2/+0
the cargo feature: edition 2018 is stabilized in current nightly
2018-09-10the cargo feature: edition 2018 is stabilized in current nightlyMatthias Krüger-2/+0
2018-09-09impl std::fmt::Debug for VersionInfoMatthias Krüger-2/+35
For clippy, this would print: VersionInfo { crate_name: "clippy", major: 0, minor: 0, patch: 212, commit_hash: "084be7ba", commit_date: "2018-09-09" }
2018-09-07rustc_tools_util: add testMatthias Krüger-0/+26
2018-09-07rustc_tools_util: don't hardcode crate nameMatthias Krüger-2/+6
2018-09-06print git commit hash and commit date in version outputMatthias Krüger-0/+90
clippy 0.0.212 (964fcbe0 2018-09-06)