napi-rs/crates/sys/Cargo.toml

35 lines
728 B
TOML
Raw Normal View History

[package]
authors = ["LongYinan <lynweklm@gmail.com>"]
description = "NodeJS N-API raw binding"
2021-12-08 13:52:33 +09:00
edition = "2021"
include = ["src/**/*", "Cargo.toml"]
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
license = "MIT"
name = "napi-sys"
readme = "README.md"
2020-07-15 02:23:23 +09:00
repository = "https://github.com/napi-rs/napi-rs"
2023-10-17 21:18:29 +09:00
rust-version = "1.65"
version = "2.3.0"
2020-11-10 12:09:25 +09:00
[features]
dyn-symbols = ["libloading"]
experimental = []
2020-11-10 12:09:25 +09:00
napi1 = []
napi2 = ["napi1"]
napi3 = ["napi2"]
napi4 = ["napi3"]
napi5 = ["napi4"]
napi6 = ["napi5"]
napi7 = ["napi6"]
2021-04-21 18:19:45 +09:00
napi8 = ["napi7"]
napi9 = ["napi8"]
2021-11-01 00:35:39 +09:00
[package.metadata.workspaces]
independent = true
[dependencies]
libloading = { version = "0.8", optional = true }
[target.'cfg(windows)'.dependencies]
libloading = "0.8"