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>
|
<p>
|
||||||
<a href="https://docs.rs/crate/napi"><img src="https://docs.rs/napi/badge.svg"></img></a>
|
<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://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>
|
</p>
|
||||||
|
|
||||||
# Platform Support
|
# Platform Support
|
||||||
|
|
|
@ -7,10 +7,10 @@ license = "MIT"
|
||||||
name = "napi-build"
|
name = "napi-build"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/napi-rs/napi-rs"
|
repository = "https://github.com/napi-rs/napi-rs"
|
||||||
version = "0.2.1"
|
version = "1.0.0-alpha.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
cfg-if = "1.0"
|
cfg-if = "1.0"
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
ureq = { version = "1.5.0", default-features = false, features = [ "native-tls" ] }
|
ureq = {version = "1.5.0", default-features = false, features = ["native-tls"]}
|
||||||
|
|
|
@ -7,7 +7,7 @@ license = "MIT"
|
||||||
name = "napi-derive"
|
name = "napi-derive"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/napi-rs/napi-rs"
|
repository = "https://github.com/napi-rs/napi-rs"
|
||||||
version = "0.5.1"
|
version = "1.0.0-alpha.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
proc-macro2 = "1.0"
|
proc-macro2 = "1.0"
|
||||||
|
|
|
@ -7,7 +7,7 @@ license = "MIT"
|
||||||
name = "napi"
|
name = "napi"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/napi-rs/napi-rs"
|
repository = "https://github.com/napi-rs/napi-rs"
|
||||||
version = "0.5.1"
|
version = "1.0.0-alpha.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["napi3"] # for most NodeJS users
|
default = ["napi3"] # for most NodeJS users
|
||||||
|
@ -23,7 +23,7 @@ serde-json = ["serde", "serde_json"]
|
||||||
tokio_rt = ["futures", "tokio", "once_cell"]
|
tokio_rt = ["futures", "tokio", "once_cell"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
napi-sys = {version = "0.4", path = "../sys"}
|
napi-sys = {version = "1.0.0-alpha.0", path = "../sys"}
|
||||||
|
|
||||||
[target.'cfg(windows)'.dependencies]
|
[target.'cfg(windows)'.dependencies]
|
||||||
winapi = "0.3.9"
|
winapi = "0.3.9"
|
||||||
|
@ -54,7 +54,7 @@ optional = true
|
||||||
version = "1"
|
version = "1"
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
napi-build = {version = "0.2", path = "../build"}
|
napi-build = {version = "1.0.0-alpha.0", path = "../build"}
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
all-features = true
|
all-features = true
|
||||||
|
|
|
@ -8,7 +8,7 @@ license = "MIT"
|
||||||
name = "napi-sys"
|
name = "napi-sys"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
repository = "https://github.com/napi-rs/napi-rs"
|
repository = "https://github.com/napi-rs/napi-rs"
|
||||||
version = "0.4.7"
|
version = "1.0.0-alpha.0"
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
napi1 = []
|
napi1 = []
|
||||||
|
@ -20,4 +20,4 @@ napi6 = ["napi5"]
|
||||||
napi7 = ["napi6"]
|
napi7 = ["napi6"]
|
||||||
|
|
||||||
[build-dependencies]
|
[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