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.4.0"
13
14[features]
15dyn-symbols = ["libloading"]
16experimental = []
17napi1 = []
18napi2 = ["napi1"]
19napi3 = ["napi2"]
20napi4 = ["napi3"]
21napi5 = ["napi4"]
22napi6 = ["napi5"]
23napi7 = ["napi6"]
24napi8 = ["napi7"]
25napi9 = ["napi8"]
26
27[package.metadata.workspaces]
28independent = true
29
30[dependencies]
31libloading = { version = "0.8", optional = true }
32
33[target.'cfg(windows)'.dependencies]
34libloading = "0.8"
35