about summary refs log tree commit diff
path: root/rustc_tools_util
AgeCommit message (Collapse)AuthorLines
2025-02-14Make rust_tools_util package compatible with current stable by lowering rust ↵Sebastian Jeltsch-7/+7
edition to 2021.
2025-02-13rustc_tools_util: Change release channel default to stableSebastian Jeltsch-25/+36
Fixes the exposed release channel Bump version to 0.4.1
2025-01-13Select edition 2024Samuel Tardieu-1/+1
2024-10-07Update README and CHANGELOGPhilipp Krones-2/+11
2024-10-07rustc_tools_util: bump versionRalf Jung-4/+4
2024-10-07rustc_tools_util: rerun when git commit changesRalf Jung-21/+48
2024-08-06Auto merge of #13225 - Jarcho:warnings, r=flip1995bors-5/+0
Use `-D warnings` instead of `deny-warnings` feature. r? `@flip1995` changelog: none
2024-08-06Use `-D warnings` instead of `deny-warnings` feature.Jason Newcomb-5/+0
2024-08-05Use a deterministic number of digits in rustc_tools_util commit hashesDavid Tolnay-2/+3
2024-08-04Check exit status of subcommands spawned by rustc_tools_utilDavid Tolnay-29/+27
2024-01-03Update copyright year for Clippy (2024 edition)blyxyas-1/+1
2023-03-09avoid reuse tripping over copyright noticesPietro Albini-0/+4
2022-12-17Merge commit '4bdfb0741dbcecd5279a2635c3280726db0604b5' into clippyupPhilipp Krones-37/+57
2022-10-06Merge commit 'ac0e10aa68325235069a842f47499852b2dee79e' into clippyupPhilipp Krones-11/+11
2022-08-31Merge commit 'f51aade56f93175dde89177a92e3669ebd8e7592' into clippyupJason Newcomb-2/+2
2022-01-17Merge commit '8d14c94b5c0a66241b4244f1c60ac5859cec1d97' into clippyupflip1995-1/+1
2021-07-29rfc3052: Remove authors field from Cargo manifestsJade-1/+0
Since RFC 3052 soft deprecated the authors field anyway, hiding it from crates.io, docs.rs, and making Cargo not add it by default, and it is not generally up to date/useful information, we should remove it from crates in this repo.
2021-06-03Merge commit '3ae8faff4d46ad92f194c2a4b941c3152a701b31' into clippyupflip1995-6/+6
2021-03-12Merge commit '6ed6f1e6a1a8f414ba7e6d9b8222e7e5a1686e42' into clippyupflip1995-1/+1
2020-05-28Merge commit '7ea7cd165ad6705603852771bf82cc2fd6560db5' into clippyup2flip1995-0/+2
2020-02-20Update Copyright yearflip1995-1/+1
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)