We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 95270ab commit 01172ecCopy full SHA for 01172ec
build.rs
@@ -31,6 +31,10 @@ fn substrait_version() -> Result<semver::Version, Box<dyn Error>> {
31
"cargo:rerun-if-changed={}",
32
Path::new("substrait").display()
33
);
34
+ // Rerun if dependencies have changed - especially if typify has changed, as
35
+ // the code generated here depends on that
36
+ println!("cargo:rerun-if-changed=Cargo.toml");
37
+ println!("cargo:rerun-if-changed=Cargo.lock");
38
39
// Check if there is a submodule. This file is not included in the packaged crate.
40
if Path::new(SUBMODULE_ROOT).join(".git").exists() {
0 commit comments