1.0.0-alpha.0
This commit is contained in:
parent
85ac3fe9e1
commit
94e0ac548c
5 changed files with 10 additions and 10 deletions
|
@ -7,7 +7,7 @@ A minimal library for building compiled `NodeJS` add-ons in `Rust`.
|
|||
<p>
|
||||
<a href="https://docs.rs/crate/napi"><img src="https://docs.rs/napi/badge.svg"></img></a>
|
||||
<a href="https://crates.io/crates/napi"><img src="https://img.shields.io/crates/v/napi.svg"></img></a>
|
||||
<a href="https://www.npmjs.com/package/napi-rs"><img src="https://img.shields.io/npm/v/napi-rs.svg"></img></a>
|
||||
<a href="https://www.npmjs.com/package/@napi-rs/cli"><img src="https://img.shields.io/npm/v/@napi-rs/cli.svg"></img></a>
|
||||
</p>
|
||||
|
||||
# Platform Support
|
||||
|
|
|
@ -7,10 +7,10 @@ license = "MIT"
|
|||
name = "napi-build"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/napi-rs/napi-rs"
|
||||
version = "0.2.1"
|
||||
version = "1.0.0-alpha.0"
|
||||
|
||||
[dependencies]
|
||||
cfg-if = "1.0"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
ureq = { version = "1.5.0", default-features = false, features = [ "native-tls" ] }
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
ureq = {version = "1.5.0", default-features = false, features = ["native-tls"]}
|
||||
|
|
|
@ -7,7 +7,7 @@ license = "MIT"
|
|||
name = "napi-derive"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/napi-rs/napi-rs"
|
||||
version = "0.5.1"
|
||||
version = "1.0.0-alpha.0"
|
||||
|
||||
[dependencies]
|
||||
proc-macro2 = "1.0"
|
||||
|
|
|
@ -7,7 +7,7 @@ license = "MIT"
|
|||
name = "napi"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/napi-rs/napi-rs"
|
||||
version = "0.5.1"
|
||||
version = "1.0.0-alpha.0"
|
||||
|
||||
[features]
|
||||
default = ["napi3"] # for most NodeJS users
|
||||
|
@ -23,7 +23,7 @@ serde-json = ["serde", "serde_json"]
|
|||
tokio_rt = ["futures", "tokio", "once_cell"]
|
||||
|
||||
[dependencies]
|
||||
napi-sys = {version = "0.4", path = "../sys"}
|
||||
napi-sys = {version = "1.0.0-alpha.0", path = "../sys"}
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
winapi = "0.3.9"
|
||||
|
@ -54,7 +54,7 @@ optional = true
|
|||
version = "1"
|
||||
|
||||
[build-dependencies]
|
||||
napi-build = {version = "0.2", path = "../build"}
|
||||
napi-build = {version = "1.0.0-alpha.0", path = "../build"}
|
||||
|
||||
[package.metadata.docs.rs]
|
||||
all-features = true
|
||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
|||
name = "napi-sys"
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/napi-rs/napi-rs"
|
||||
version = "0.4.7"
|
||||
version = "1.0.0-alpha.0"
|
||||
|
||||
[features]
|
||||
napi1 = []
|
||||
|
@ -20,4 +20,4 @@ napi6 = ["napi5"]
|
|||
napi7 = ["napi6"]
|
||||
|
||||
[build-dependencies]
|
||||
napi-build = {version = "0.2", path = "../build"}
|
||||
napi-build = {version = "1.0.0-alpha.0", path = "../build"}
|
||||
|
|
Loading…
Reference in a new issue