napi-rs/crates/napi/Cargo.toml

81 lines
2 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"
2021-12-08 13:52:33 +09:00
edition = "2021"
2021-03-31 22:51:12 +09:00
keywords = ["NodeJS", "Node", "FFI", "NAPI", "n-api"]
2020-10-11 22:36:14 +09:00
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"
version = "2.3.3"
[package.metadata.docs.rs]
all-features = true
[package.metadata.workspaces]
independent = true
2020-02-18 22:09:17 +09:00
[features]
2021-11-01 00:35:39 +09:00
async = ["tokio_rt"]
compat-mode = []
default = ["napi3", "compat-mode"] # for most Node.js users
experimental = ["napi-sys/experimental"]
2022-02-10 14:44:43 +09:00
chrono_date = ["chrono", "napi5"]
full = ["latin1", "napi8", "async", "serde-json", "experimental", "chrono_date"]
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"]
2021-04-21 18:19:45 +09:00
napi8 = ["napi7", "napi-sys/napi8"]
2020-08-26 01:07:27 +09:00
serde-json = ["serde", "serde_json"]
tokio_fs = ["tokio/fs"]
tokio_full = ["tokio/full"]
tokio_io_std = ["tokio/io-std"]
tokio_io_util = ["tokio/io-util"]
tokio_macros = ["tokio/macros"]
tokio_net = ["tokio/net"]
tokio_process = ["tokio/process"]
tokio_rt = ["tokio", "napi4"]
tokio_signal = ["tokio/signal"]
tokio_stats = ["tokio/stats"]
tokio_sync = ["tokio/sync"]
tokio_test_util = ["tokio/test-util"]
tokio_time = ["tokio/time"]
2020-07-08 01:59:09 +09:00
[dependencies]
ctor = "0.1"
lazy_static = "1"
napi-sys = { version = "2.1.0", path = "../sys" }
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
[dependencies.chrono]
optional = true
version = "0.4"
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
2021-02-07 01:08:38 +09:00
version = "1"
2020-07-08 01:59:09 +09:00
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"
[target.'cfg(windows)'.dependencies]
2022-04-27 14:36:11 +09:00
windows = { version = "0.36", features = [
2022-02-10 20:00:38 +09:00
"Win32_System_WindowsProgramming",
"Win32_System_LibraryLoader",
"Win32_Foundation",
] }