1[package]
2authors = ["LongYinan <lynweklm@gmail.com>"]
3description = "NodeJS N-API raw binding"
4edition = "2021"
5include = ["src/**/*", "Cargo.toml"]
6keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
7license = "MIT"
8name = "napi-sys"
9readme = "README.md"
10repository = "https://github.com/napi-rs/napi-rs"
11rust-version = "1.65"
12version = "2.3.0"
13
14[features]
15experimental = []
16napi1 = []
17napi2 = ["napi1"]
18napi3 = ["napi2"]
19napi4 = ["napi3"]
20napi5 = ["napi4"]
21napi6 = ["napi5"]
22napi7 = ["napi6"]
23napi8 = ["napi7"]
24napi9 = ["napi8"]
25
26[package.metadata.workspaces]
27independent = true
28
29[target.'cfg(windows)'.dependencies.libloading]
30version = "0.8"
31