54 lines
1.2 KiB
TOML
54 lines
1.2 KiB
TOML
[package]
|
|
authors = ["Nathan Sobo <nathan@github.com>", "Yinan Long <lynweklm@gmail.com>"]
|
|
description = "N-API bindings"
|
|
edition = "2018"
|
|
keywords = ["NodeJS", "Node", "FFI", "NAPI", "n-api"]
|
|
license = "MIT"
|
|
name = "napi"
|
|
readme = "README.md"
|
|
repository = "https://github.com/napi-rs/napi-rs"
|
|
version = "1.7.7"
|
|
|
|
[features]
|
|
default = ["napi3"] # for most Node.js users
|
|
latin1 = ["encoding_rs"]
|
|
napi1 = []
|
|
napi2 = ["napi1"]
|
|
napi3 = ["napi2", "napi-sys/napi3"]
|
|
napi4 = ["napi3", "napi-sys/napi4"]
|
|
napi5 = ["napi4", "napi-sys/napi5"]
|
|
napi6 = ["napi5", "napi-sys/napi6"]
|
|
napi7 = ["napi6", "napi-sys/napi7"]
|
|
napi8 = ["napi7", "napi-sys/napi8"]
|
|
serde-json = ["serde", "serde_json"]
|
|
tokio_rt = ["tokio", "once_cell", "napi4"]
|
|
|
|
[dependencies]
|
|
napi-sys = {version = "1", path = "../sys"}
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = {version = "0.3.9", features = ["winuser", "minwindef", "ntdef", "libloaderapi"]}
|
|
|
|
[dependencies.encoding_rs]
|
|
optional = true
|
|
version = "0.8"
|
|
|
|
[dependencies.tokio]
|
|
features = ["rt", "rt-multi-thread", "sync"]
|
|
optional = true
|
|
version = "1"
|
|
|
|
[dependencies.once_cell]
|
|
optional = true
|
|
version = "1"
|
|
|
|
[dependencies.serde]
|
|
optional = true
|
|
version = "1"
|
|
|
|
[dependencies.serde_json]
|
|
optional = true
|
|
version = "1"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|