From 54b8a68787bb9e59ae6abc7857f5a0f616b1f7e5 Mon Sep 17 00:00:00 2001 From: Divy Srivastava Date: Mon, 15 Nov 2021 13:02:28 +0530 Subject: [PATCH] publish 0.3.0 --- README.md | 2 +- deno_bindgen/Cargo.toml | 8 +++++++- deno_bindgen_macro/Cargo.toml | 8 +++++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2707c84..b4a5944 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ Add the following dependencies to your crate. ```toml # Cargo.toml [dependencies] -deno_bindgen = "0.2" +deno_bindgen = "0.3" serde = { version = "1", features = ["derive"] } ``` diff --git a/deno_bindgen/Cargo.toml b/deno_bindgen/Cargo.toml index cc09769..6089c6a 100644 --- a/deno_bindgen/Cargo.toml +++ b/deno_bindgen/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "deno_bindgen" -version = "0.2.0" +version = "0.3.0" description = "This tool aims to simplify glue code generation for Deno FFI libraries written in Rust." +documentation = "https://docs.rs/deno_bindgen" +homepage = "https://github.com/littledivy/deno_bindgen" +repository = "https://github.com/littledivy/deno_bindgen" +keywords = ["deno", "ffi", "bindgen", "bindings", "macro"] +categories = ["development-tools::ffi", "development-tools"] +readme = "../README.md" license = "MIT" edition = "2018" diff --git a/deno_bindgen_macro/Cargo.toml b/deno_bindgen_macro/Cargo.toml index 8dd8ac8..1eed8d8 100644 --- a/deno_bindgen_macro/Cargo.toml +++ b/deno_bindgen_macro/Cargo.toml @@ -1,7 +1,13 @@ [package] name = "deno_bindgen_macro" -version = "0.2.0" +version = "0.3.0" description = "This tool aims to simplify glue code generation for Deno FFI libraries written in Rust." +documentation = "https://docs.rs/deno_bindgen_macro" +homepage = "https://github.com/littledivy/deno_bindgen" +repository = "https://github.com/littledivy/deno_bindgen" +keywords = ["deno", "ffi", "bindgen", "bindings", "macro"] +categories = ["development-tools::ffi", "development-tools"] +readme = "../README.md" license = "MIT" edition = "2018"