From 6d41a28c3a92870eee5e52ad69f0f9336635d6e3 Mon Sep 17 00:00:00 2001 From: Miguel Ramos Date: Mon, 23 Sep 2024 16:50:26 +0100 Subject: [PATCH] fix: skipping non conventional commits --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index ca624c2..b4a16a0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ authors = ["Miguel Ramos "] edition = "2021" name = "websublime_workspace-tools" -version = "1.0.1" +version = "1.0.2" exclude = ["tests/*", "examples/*", "node_modules/*", "target/*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -12,12 +12,12 @@ crate-type = ["cdylib"] [dependencies] napi-derive = "2.16.12" -napi = { version = "2.16.10", default-features = false, features = [ +napi = { version = "2.16.11", default-features = false, features = [ "napi9", "serde-json", "tokio_rt", ] } -workspace-node-tools = { version = "2.0.1", features = ["napi", "napi-derive"] } +workspace-node-tools = { version = "2.0.2", features = ["napi", "napi-derive"] } [build-dependencies] napi-build = "2"