napi-rs/sys/Cargo.toml

31 lines
788 B
TOML
Raw Normal View History

[package]
name = "napi-sys"
version = "0.4.6"
authors = ["LongYinan <lynweklm@gmail.com>"]
edition = "2018"
readme = "README.md"
2020-07-15 02:24:56 +09:00
description = "NodeJS N-API raw binding"
2020-07-15 02:23:23 +09:00
repository = "https://github.com/napi-rs/napi-rs"
license = "MIT"
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
2020-08-14 00:38:01 +09:00
include = ["src/**/*", "Cargo.toml", "build.rs", ".node-headers/**/*"]
[target.'cfg(windows)'.build-dependencies]
flate2 = "1.0"
reqwest = { version = "0.10", features = ["native-tls", "blocking"] }
tar = "0.4"
[target.x86_64-unknown-linux-gnu.build-dependencies]
flate2 = "1.0"
reqwest = { version = "0.10", features = ["native-tls", "blocking"] }
tar = "0.4"
[build-dependencies]
2020-08-24 20:07:20 +09:00
bindgen = "0.55"
glob = "0.3"
regex = "1.3"
semver = "0.10"
[package.metadata.docs.rs]
2020-08-15 19:31:52 +09:00
rustc-args = ["--cfg", "docsrs"]