napi-rs/napi/Cargo.toml

61 lines
1.3 KiB
TOML
Raw Normal View History

2020-02-18 22:09:17 +09:00
[package]
authors = ["Nathan Sobo <nathan@github.com>", "Yinan Long <lynweklm@gmail.com>"]
2020-03-16 15:26:30 +09:00
description = "N-API bindings"
2020-10-11 22:36:14 +09:00
edition = "2018"
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
license = "MIT"
name = "napi"
2020-03-16 15:26:30 +09:00
readme = "README.md"
2020-07-15 02:23:23 +09:00
repository = "https://github.com/napi-rs/napi-rs"
2020-12-30 01:56:08 +09:00
version = "1.0.0"
2020-02-18 22:09:17 +09:00
[features]
2020-11-10 12:09:25 +09:00
default = ["napi3"] # for most NodeJS users
2020-10-11 22:36:14 +09:00
latin1 = ["encoding_rs"]
2020-11-10 12:09:25 +09:00
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"]
2020-08-26 01:07:27 +09:00
serde-json = ["serde", "serde_json"]
2020-10-11 22:36:14 +09:00
tokio_rt = ["futures", "tokio", "once_cell"]
2020-07-08 01:59:09 +09:00
[dependencies]
2020-12-30 01:56:08 +09:00
napi-sys = {version = "1", path = "../sys"}
2020-10-31 10:24:19 +09:00
[target.'cfg(windows)'.dependencies]
2021-01-04 12:01:13 +09:00
winapi = {version = "0.3.9", features = ["winuser", "minwindef", "ntdef", "libloaderapi"]}
2020-10-31 10:24:19 +09:00
2020-09-03 20:11:30 +09:00
[dependencies.encoding_rs]
optional = true
2020-10-11 22:36:14 +09:00
version = "0.8"
2020-09-03 20:11:30 +09:00
2020-07-08 01:59:09 +09:00
[dependencies.futures]
optional = true
2020-10-11 22:36:14 +09:00
version = "0.3"
2020-07-08 01:59:09 +09:00
[dependencies.tokio]
2020-10-16 21:58:56 +09:00
features = ["rt", "rt-multi-thread", "sync"]
2020-07-08 01:59:09 +09:00
optional = true
2020-12-24 14:55:21 +09:00
version = "1.0"
2020-07-08 01:59:09 +09:00
[dependencies.once_cell]
optional = true
version = "1.5"
2020-08-26 01:07:27 +09:00
[dependencies.serde]
optional = true
2020-10-11 22:36:14 +09:00
version = "1"
2020-08-26 01:07:27 +09:00
[dependencies.serde_json]
optional = true
2020-10-11 22:36:14 +09:00
version = "1"
2020-02-18 22:09:17 +09:00
[build-dependencies]
2020-12-30 01:56:08 +09:00
napi-build = {version = "1", path = "../build"}
2020-08-15 19:31:52 +09:00
[package.metadata.docs.rs]
2020-09-03 21:38:28 +09:00
all-features = true