30 lines
788 B
TOML
30 lines
788 B
TOML
[package]
|
|
name = "napi-sys"
|
|
version = "0.4.3"
|
|
authors = ["LongYinan <lynweklm@gmail.com>"]
|
|
edition = "2018"
|
|
readme = "README.md"
|
|
description = "NodeJS N-API raw binding"
|
|
repository = "https://github.com/napi-rs/napi-rs"
|
|
license = "MIT"
|
|
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
|
|
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]
|
|
bindgen = "0.54"
|
|
glob = "0.3"
|
|
regex = "1.3"
|
|
semver = "0.10"
|
|
|
|
[package.metadata.docs.rs]
|
|
rustc-args = ["--cfg", "docsrs"]
|