diff options
| author | Steven Fackler <[email protected]> | 2014-11-22 15:45:14 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2014-11-22 15:46:11 -0800 |
| commit | b7c88101f5afd764f1bab5b1a4b8d0c95bc17a52 (patch) | |
| tree | 9a3f5773321e92214efb1b5a4dcacf49f317397d | |
| parent | Update stuff for upload to registry (diff) | |
| download | rust-openssl-0.0.2.tar.xz rust-openssl-0.0.2.zip | |
Add more crate metadatav0.0.2
| -rw-r--r-- | Cargo.toml | 6 | ||||
| -rw-r--r-- | openssl-sys/Cargo.toml | 3 |
2 files changed, 7 insertions, 2 deletions
@@ -1,9 +1,13 @@ [package] name = "openssl" version = "0.0.2" -authors = ["Steven Fackler <[email protected]"] +authors = ["Steven Fackler <[email protected]>"] license = "Apache-2.0" 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] tlsv1_2 = ["openssl-sys/tlsv1_2"] diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 8c8011b6..d9ef77ec 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -4,8 +4,9 @@ name = "openssl-sys" version = "0.0.2" authors = ["Alex Crichton <[email protected]>", "Steven Fackler <[email protected]>"] -license = "Apache-2.0" +license = "MIT" description = "FFI bindings to OpenSSL" +repository = "https://github.com/sfackler/rust-openssl" links = "openssl" build = "src/build.rs" |