mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Include prettyplease version in --version
This commit is contained in:
parent
c92f07e606
commit
c5b8828563
4 changed files with 25 additions and 5 deletions
18
build.rs
Normal file
18
build.rs
Normal file
|
@ -0,0 +1,18 @@
|
|||
use std::env;
|
||||
use std::fs;
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
||||
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
||||
let version_file = out_dir.join("version");
|
||||
fs::write(version_file, version).unwrap();
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue