aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys-extras
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-11-16 20:39:20 -0800
committerSteven Fackler <[email protected]>2015-11-16 21:10:50 -0800
commit82547f53d7946bb1d85ca0793d92873328a7632c (patch)
tree21e7a32e45992656ddefbf95c3179eb0f914b865 /openssl-sys-extras
parentMention why the windows deps are there (diff)
downloadrust-openssl-82547f53d7946bb1d85ca0793d92873328a7632c.tar.xz
rust-openssl-82547f53d7946bb1d85ca0793d92873328a7632c.zip
Release v0.7.0
Diffstat (limited to 'openssl-sys-extras')
-rw-r--r--openssl-sys-extras/Cargo.toml9
-rw-r--r--openssl-sys-extras/src/lib.rs1
2 files changed, 8 insertions, 2 deletions
diff --git a/openssl-sys-extras/Cargo.toml b/openssl-sys-extras/Cargo.toml
index 031b2124..a7f58f3c 100644
--- a/openssl-sys-extras/Cargo.toml
+++ b/openssl-sys-extras/Cargo.toml
@@ -1,7 +1,12 @@
[package]
name = "openssl-sys-extras"
-version = "0.6.7"
+version = "0.7.0"
authors = ["Steven Fackler <[email protected]>"]
+license = "MIT"
+description = "Extra FFI bindings to OpenSSL that require a C shim"
+repository = "https://github.com/sfackler/rust-openssl"
+documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.0/openssl_sys_extras"
+
links = "openssl_shim"
build = "build.rs"
@@ -10,7 +15,7 @@ ecdh_auto = []
[dependencies]
libc = "0.2"
-openssl-sys = { version = "0.6.7", path = "../openssl-sys" }
+openssl-sys = { version = "0.7", path = "../openssl-sys" }
[build-dependencies]
gcc = "0.3"
diff --git a/openssl-sys-extras/src/lib.rs b/openssl-sys-extras/src/lib.rs
index bd3598eb..a768f436 100644
--- a/openssl-sys-extras/src/lib.rs
+++ b/openssl-sys-extras/src/lib.rs
@@ -1,4 +1,5 @@
#![allow(non_upper_case_globals, non_snake_case)]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.0")]
extern crate openssl_sys;
extern crate libc;