main()1 fn main() { 2 println!("cargo:rerun-if-changed=src/lib.c"); 3 4 cc::Build::new() 5 .file("src/lib.c") 6 .compile("libvsprintf.a"); 7 } 8 9