Prettyplease default, rustfmt opt-in via config

This commit is contained in:
David Tolnay 2022-08-13 11:48:46 -07:00
parent 5902eff89c
commit 9e6d9270e7
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
5 changed files with 28 additions and 37 deletions

View file

@ -4,12 +4,10 @@ use std::path::PathBuf;
fn main() {
let mut version = env!("CARGO_PKG_VERSION").to_owned();
if cfg!(feature = "prettyplease") {
if let Ok(prettyplease_version) = env::var("DEP_PRETTYPLEASE01_VERSION") {
// TODO: Make this appear only if `--version --verbose` is used.
version.push_str(" + prettyplease ");
version.push_str(&prettyplease_version);
}
if let Ok(prettyplease_version) = env::var("DEP_PRETTYPLEASE01_VERSION") {
// TODO: Make this appear only if `--version --verbose` is used.
version.push_str(" + prettyplease ");
version.push_str(&prettyplease_version);
}
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());