diff options
Diffstat (limited to '')
-rw-r--r-- | vendor/serde_json/build.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vendor/serde_json/build.rs b/vendor/serde_json/build.rs index e9ec7d56a..0e12602e4 100644 --- a/vendor/serde_json/build.rs +++ b/vendor/serde_json/build.rs @@ -3,6 +3,8 @@ use std::process::Command; use std::str::{self, FromStr}; fn main() { + println!("cargo:rerun-if-changed=build.rs"); + // Decide ideal limb width for arithmetic in the float parser. Refer to // src/lexical/math.rs for where this has an effect. let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap(); |