2020-07-15 00:43:20 +08:00
|
|
|
[package]
|
|
|
|
authors = ["LongYinan <lynweklm@gmail.com>"]
|
2020-10-09 21:37:14 +08:00
|
|
|
description = "NodeJS N-API raw binding"
|
2021-12-08 12:52:33 +08:00
|
|
|
edition = "2021"
|
2020-10-09 21:37:14 +08:00
|
|
|
include = ["src/**/*", "Cargo.toml", "build.rs", ".node-headers/**/*"]
|
|
|
|
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
|
|
|
|
license = "MIT"
|
|
|
|
name = "napi-sys"
|
2020-07-15 00:43:20 +08:00
|
|
|
readme = "README.md"
|
2020-07-15 01:23:23 +08:00
|
|
|
repository = "https://github.com/napi-rs/napi-rs"
|
2021-12-02 14:34:53 +08:00
|
|
|
version = "2.1.0"
|
2020-07-15 00:43:20 +08:00
|
|
|
|
2020-11-10 11:09:25 +08:00
|
|
|
[features]
|
2021-11-30 00:18:07 +08:00
|
|
|
experimental = []
|
2020-11-10 11:09:25 +08:00
|
|
|
napi1 = []
|
|
|
|
napi2 = ["napi1"]
|
|
|
|
napi3 = ["napi2"]
|
|
|
|
napi4 = ["napi3"]
|
|
|
|
napi5 = ["napi4"]
|
|
|
|
napi6 = ["napi5"]
|
|
|
|
napi7 = ["napi6"]
|
2021-04-21 17:19:45 +08:00
|
|
|
napi8 = ["napi7"]
|
2021-10-31 23:35:39 +08:00
|
|
|
|
|
|
|
[package.metadata.workspaces]
|
|
|
|
independent = true
|