Add more crate metadata

This commit is contained in:
Steven Fackler 2014-11-22 15:45:14 -08:00
parent 178d0f0c8e
commit b7c88101f5
2 changed files with 7 additions and 2 deletions

View File

@ -1,9 +1,13 @@
[package] [package]
name = "openssl" name = "openssl"
version = "0.0.2" version = "0.0.2"
authors = ["Steven Fackler <sfackler@gmail.com"] authors = ["Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0" license = "Apache-2.0"
description = "OpenSSL bindings" description = "OpenSSL bindings"
repository = "https://github.com/sfackler/rust-openssl"
documentation = "https://sfackler.github.io/doc/openssl"
readme = "README.md"
keywords = ["crypto", "tls", "ssl"]
[features] [features]
tlsv1_2 = ["openssl-sys/tlsv1_2"] tlsv1_2 = ["openssl-sys/tlsv1_2"]

View File

@ -4,8 +4,9 @@ name = "openssl-sys"
version = "0.0.2" version = "0.0.2"
authors = ["Alex Crichton <alex@alexcrichton.com>", authors = ["Alex Crichton <alex@alexcrichton.com>",
"Steven Fackler <sfackler@gmail.com>"] "Steven Fackler <sfackler@gmail.com>"]
license = "Apache-2.0" license = "MIT"
description = "FFI bindings to OpenSSL" description = "FFI bindings to OpenSSL"
repository = "https://github.com/sfackler/rust-openssl"
links = "openssl" links = "openssl"
build = "src/build.rs" build = "src/build.rs"