[][src]Function cargo_meta::rerun_on_manifest_change

pub fn rerun_on_manifest_change()

Re-run builds when the Cargo manifest is updated

Example

Add cargo_meta to the build-dependencies section of Cargo.toml. In your build.rs:

fn main() {
    cargo_meta::rerun_on_manifest_change();
}