diff options
author | Andrew Clayton <a.clayton@nginx.com> | 2023-08-28 20:37:19 +0100 |
---|---|---|
committer | Andrew Clayton <a.clayton@nginx.com> | 2023-08-28 20:44:23 +0100 |
commit | cf49f71c293581cca2cff78b77f3a4dc791ca926 (patch) | |
tree | fef640789a44783d5518f0c5ce0b3916ee62049d /src | |
parent | 7213db59cb540491af65bd0e9c880354531fc938 (diff) | |
download | unit-wasm-cf49f71c293581cca2cff78b77f3a4dc791ca926.tar.gz unit-wasm-cf49f71c293581cca2cff78b77f3a4dc791ca926.tar.bz2 |
Rust/unit-wasm-sys: Re-generate the bindings on changes to unit-wasm.h
Signed-off-by: Andrew Clayton <a.clayton@nginx.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/rust/unit-wasm-sys/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rust/unit-wasm-sys/build.rs b/src/rust/unit-wasm-sys/build.rs index 3d3ff0e..507099b 100644 --- a/src/rust/unit-wasm-sys/build.rs +++ b/src/rust/unit-wasm-sys/build.rs @@ -9,8 +9,8 @@ fn main() { let dir = env::var("CARGO_MANIFEST_DIR").unwrap(); - // Some generics println!("cargo:rerun-if-changed=build.rs"); + println!("cargo:rerun-if-changed=libunit-wasm/include/unit/unit-wasm.h"); // The rustc-link-search tells Cargo to pass the `-L` flag to the // compiler to add a directory to the library search plugin. The |