diff --git a/crates/backend/Cargo.toml b/crates/backend/Cargo.toml index 8e70944a..67897549 100644 --- a/crates/backend/Cargo.toml +++ b/crates/backend/Cargo.toml @@ -6,7 +6,7 @@ license = "MIT" name = "napi-derive-backend" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "1.0.14" +version = "1.0.15" [features] strict = [] diff --git a/crates/macro/Cargo.toml b/crates/macro/Cargo.toml index 46797c6b..91ddac08 100644 --- a/crates/macro/Cargo.toml +++ b/crates/macro/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" name = "napi-derive" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "2.0.0-beta.2" +version = "2.0.0-beta.3" [features] compat-mode = [] @@ -18,7 +18,7 @@ type-def = ["napi-derive-backend/type-def"] [dependencies] convert_case = "0.4" -napi-derive-backend = {version = "1.0.14", path = "../backend"} +napi-derive-backend = {version = "1.0.15", path = "../backend"} proc-macro2 = "1.0" quote = "1.0" syn = {version = "1.0", features = ["fold", "full", "extra-traits"]} diff --git a/crates/napi/Cargo.toml b/crates/napi/Cargo.toml index 31bfd455..74347d48 100644 --- a/crates/napi/Cargo.toml +++ b/crates/napi/Cargo.toml @@ -7,13 +7,13 @@ license = "MIT" name = "napi" readme = "README.md" repository = "https://github.com/napi-rs/napi-rs" -version = "2.0.0-beta.3" +version = "2.0.0-beta.4" [features] async = ["tokio_rt"] -experimental = ["napi-sys/experimental"] compat-mode = [] default = ["napi3", "compat-mode"] # for most Node.js users +experimental = ["napi-sys/experimental"] full = ["latin1", "napi8", "async", "serde-json", "experimental"] latin1 = ["encoding_rs"] napi1 = [] @@ -32,7 +32,7 @@ ctor = "0.1" napi-sys = {version = "2.1.0", path = "../sys"} [target.'cfg(windows)'.dependencies] -windows = {version = "0.27", features = ["Win32_System_WindowsProgramming", "Win32_System_LibraryLoader", "Win32_Foundation"]} +windows = {version = "0.28", features = ["Win32_System_WindowsProgramming", "Win32_System_LibraryLoader", "Win32_Foundation"]} [dependencies.encoding_rs] optional = true