napi-rs/crates/build
LongYinan 36581336c6
feat(napi): pass the rest of async tests (#1792)
Pass the rest of async tests, including await the JavaScript Promise in the Rust side, and the worker_threads tests.
2023-11-07 01:46:43 +08:00
..
src feat(napi): pass the rest of async tests (#1792) 2023-11-07 01:46:43 +08:00
Cargo.toml feat: bump msrv to 1.65 (#1755) 2023-10-17 20:18:29 +08:00
README.md Introduce #[napi] procedural macro to automation development boilerplate (#696) 2021-09-23 01:29:09 +08:00

napi-build

chat

Build support for napi-rs

Setup N-API build in your build.rs:

extern crate napi_build;

fn main() {
    napi_build::setup();
}