napi-rs/napi/Cargo.toml

29 lines
682 B
TOML
Raw Normal View History

2020-02-18 22:09:17 +09:00
[package]
name = "napi-rs"
2020-05-15 15:29:06 +09:00
version = "0.3.1"
2020-02-18 22:09:17 +09:00
authors = ["Nathan Sobo <nathan@github.com>", "Yinan Long <lynweklm@gmail.com>"]
license = "MIT"
2020-03-16 15:26:30 +09:00
description = "N-API bindings"
readme = "README.md"
repository = "https://github.com/Brooooooklyn/napi-rs"
2020-04-26 20:57:31 +09:00
keywords = ["NodeJS", "FFI", "NAPI", "n-api"]
edition = "2018"
2020-02-18 22:09:17 +09:00
[features]
libuv = ["futures"]
[dependencies]
futures = { version = "0.3", optional = true }
2020-02-18 22:09:17 +09:00
[target.'cfg(windows)'.build-dependencies]
flate2 = "1.0"
reqwest = { version = "0.10", features = ["native-tls", "blocking"] }
tar = "0.4"
[build-dependencies]
bindgen = "0.54"
2020-02-18 22:09:17 +09:00
glob = "0.3"
2020-03-16 15:26:30 +09:00
napi-build = { version = "0.1", path = "../build" }
2020-02-18 22:09:17 +09:00
regex = "1.3"
semver = "0.10"