diff options
-rw-r--r-- | Cargo.toml | 2 | ||||
-rw-r--r-- | bindgen_plugin/Cargo.toml | 2 |
2 files changed, 4 insertions, 0 deletions
@@ -2,6 +2,7 @@ name = "bindgen" version = "0.14.0" +description = "A binding generator for Rust" authors = ["Jyun-Yan You <jyyou.tw@gmail.com>"] license = "BSD-3-Clause" @@ -13,6 +14,7 @@ libc = "*" syntex_syntax = "*" [dev-dependencies.bindgen_plugin] +version = "*" path = "./bindgen_plugin" [features] diff --git a/bindgen_plugin/Cargo.toml b/bindgen_plugin/Cargo.toml index c351292c..50c3f2d9 100644 --- a/bindgen_plugin/Cargo.toml +++ b/bindgen_plugin/Cargo.toml @@ -2,10 +2,12 @@ name = "bindgen_plugin" version = "0.14.0" +description = "A binding generator for Rust - compiler plugin" authors = ["Jyun-Yan You <jyyou.tw@gmail.com>"] license = "BSD-3-Clause" [dependencies.bindgen] +version = "*" path = ".." [features] |