aboutsummaryrefslogtreecommitdiff
path: root/openssl
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
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')
-rw-r--r--openssl/Cargo.toml8
-rw-r--r--openssl/src/lib.rs2
2 files changed, 5 insertions, 5 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml
index 2469fe40..7cc29a1f 100644
--- a/openssl/Cargo.toml
+++ b/openssl/Cargo.toml
@@ -1,11 +1,11 @@
[package]
name = "openssl"
-version = "0.6.7"
+version = "0.7.0"
authors = ["Steven Fackler <[email protected]>"]
license = "Apache-2.0"
description = "OpenSSL bindings"
repository = "https://github.com/sfackler/rust-openssl"
-documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.7/openssl"
+documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.0/openssl"
readme = "../README.md"
keywords = ["crypto", "tls", "ssl", "dtls"]
@@ -27,8 +27,8 @@ ecdh_auto = ["openssl-sys-extras/ecdh_auto"]
bitflags = ">= 0.2, < 0.4"
lazy_static = "0.1"
libc = "0.2"
-openssl-sys = { version = "0.6.7", path = "../openssl-sys" }
-openssl-sys-extras = { version = "0.6.7", path = "../openssl-sys-extras" }
+openssl-sys = { version = "0.7", path = "../openssl-sys" }
+openssl-sys-extras = { version = "0.7", path = "../openssl-sys-extras" }
[dev-dependencies]
rustc-serialize = "0.3"
diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs
index 2fedd28f..66ce1894 100644
--- a/openssl/src/lib.rs
+++ b/openssl/src/lib.rs
@@ -1,4 +1,4 @@
-#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.6.7")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.0")]
#[macro_use]
extern crate bitflags;