diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-03-12 00:14:42 +0100 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-03-12 00:14:42 +0100 |
commit | 659ef989d7ac332bd1d4be193f6b38fb4718f24b (patch) | |
tree | 0856120cfd72a7b2ccfb5ad2b49094497f07ff4e | |
parent | a637f511db0120b068df14d1305db3683bf8bc46 (diff) | |
parent | 715efdc136f9c5da99b90a5f988e98d5ea7f9e11 (diff) |
Merge pull request #288 from bsteinb/clean-up-cargo-toml
Add meta-data to Cargo.toml and remove extra newlines.
-rw-r--r-- | Cargo.toml | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,11 +1,13 @@ [package] - name = "bindgen" version = "0.16.0" description = "A binding generator for Rust" authors = ["Jyun-Yan You <jyyou.tw@gmail.com>"] license = "BSD-3-Clause" - +homepage = "https://github.com/crabtw/rust-bindgen" +repository = "https://github.com/crabtw/rust-bindgen" +readme = "README.md" +keywords = [ "bindings", "ffi", "code-generation" ] build = "build.rs" [dependencies] @@ -17,12 +19,10 @@ syntex_syntax = "0.29.*" static = [] [lib] - name = "bindgen" path = "src/lib.rs" [[bin]] - name = "bindgen" doc = false |