diff options
author | Jyun-Yan You <jyyou.tw@gmail.com> | 2015-05-06 01:58:25 +0800 |
---|---|---|
committer | Jyun-Yan You <jyyou.tw@gmail.com> | 2015-05-06 01:58:25 +0800 |
commit | e8d1248983aec64177d2d015cbd88f70f1ee1f82 (patch) | |
tree | c9d9bf6bb13736a2fd95e991ee99b0dd12999f3b | |
parent | 40b62ebc9853b8feeaddce8cad972eebdb9f99a9 (diff) |
Add version and description to Cargo.toml
-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] |