napi 3.0.0-alpha.3

N-API bindings
Documentation
1
2
3
4
5
6
7
fn main() {
  let target_os = std::env::var("CARGO_CFG_TARGET_OS").unwrap();
  let target_env = std::env::var("CARGO_CFG_TARGET_ENV").unwrap();
  if target_os == "windows" && target_env == "gnu" {
    napi_build::setup();
  }
}