9 lines
195 B
Rust
9 lines
195 B
Rust
extern crate napi_build;
|
|
|
|
fn main() {
|
|
// watch the version in the project root package.json
|
|
println!("cargo:rerun-if-changed=../../package.json");
|
|
|
|
// napi
|
|
napi_build::setup();
|
|
}
|