mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Prettyplease default, rustfmt opt-in via config
This commit is contained in:
parent
5902eff89c
commit
9e6d9270e7
5 changed files with 28 additions and 37 deletions
10
build.rs
10
build.rs
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue