diff --git a/README.md b/README.md index 4c02eef4..78919898 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ A minimal library for building compiled `NodeJS` add-ons in `Rust`.
# Platform Support diff --git a/build/Cargo.toml b/build/Cargo.toml index 75029464..8bc566cf 100644 --- a/build/Cargo.toml +++ b/build/Cargo.toml @@ -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"]} diff --git a/napi-derive/Cargo.toml b/napi-derive/Cargo.toml index d6ff867f..2e17885f 100644 --- a/napi-derive/Cargo.toml +++ b/napi-derive/Cargo.toml @@ -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" diff --git a/napi/Cargo.toml b/napi/Cargo.toml index fefae10e..e9eb9fd9 100644 --- a/napi/Cargo.toml +++ b/napi/Cargo.toml @@ -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 diff --git a/sys/Cargo.toml b/sys/Cargo.toml index 2e7bcd8b..12b03810 100644 --- a/sys/Cargo.toml +++ b/sys/Cargo.toml @@ -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"}