about summary refs log tree commit diff
path: root/rustc_tools_util/src
AgeCommit message (Collapse)AuthorLines
2019-11-25Enable deny-warnings feature everywhere in CIflip1995-0/+2
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-08-01Update formattingMichael Wright-1/+0
2019-05-23rustc_tool_utils: bump version to 0.2.0Matthias Krüger-4/+4
2019-04-28rustc_tools_util: try to handle case of not having CFG_RELEASE_CHANNEL ↵Matthias Krüger-10/+29
better when getting compiler channel.
2019-02-10removing redundant closures in the whole projectGrzegorz-2/+2
2019-01-08Remove all copyright license headersPhilipp Hansch-9/+0
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-10/+11
used in crates on crates.io, bump version
2018-11-27Run rustfmt on rustc_tools_utilflip1995-1/+0
2018-10-06Add license header to Rust filesManish Goregaokar-0/+10
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-13rustc_tools_util: clean up pedantic clippy warningsMatthias Krüger-31/+27
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/+82
clippy 0.0.212 (964fcbe0 2018-09-06)