mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Prevent build.rs rerunning unnecessarily on all source changes
This commit is contained in:
parent
0a12097eb7
commit
5a10cb0134
1 changed files with 2 additions and 0 deletions
2
build.rs
2
build.rs
|
@ -3,6 +3,8 @@ use std::fs;
|
|||
use std::path::PathBuf;
|
||||
|
||||
fn main() {
|
||||
println!("cargo:rerun-if-changed=build.rs");
|
||||
|
||||
let mut version = env!("CARGO_PKG_VERSION").to_owned();
|
||||
if let Ok(prettyplease_version) = env::var("DEP_PRETTYPLEASE01_VERSION") {
|
||||
// TODO: Make this appear only if `--version --verbose` is used.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue