diff options
| author | Steven Fackler <[email protected]> | 2015-10-05 22:34:32 +0100 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-10-05 22:34:32 +0100 |
| commit | 677ed6ad1b7a84b0ae96e722bd0a084c67bcff40 (patch) | |
| tree | 3daecc337d7a866e06646a7551ac912078c68c73 /openssl | |
| parent | Clean up init stuff (diff) | |
| download | rust-openssl-677ed6ad1b7a84b0ae96e722bd0a084c67bcff40.tar.xz rust-openssl-677ed6ad1b7a84b0ae96e722bd0a084c67bcff40.zip | |
Release v0.6.6
Diffstat (limited to 'openssl')
| -rw-r--r-- | openssl/Cargo.toml | 6 | ||||
| -rw-r--r-- | openssl/src/lib.rs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/openssl/Cargo.toml b/openssl/Cargo.toml index c70c3ad3..ac0a5cc7 100644 --- a/openssl/Cargo.toml +++ b/openssl/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "openssl" -version = "0.6.5" +version = "0.6.6" 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.5/openssl" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.6/openssl" readme = "../README.md" keywords = ["crypto", "tls", "ssl", "dtls"] @@ -24,7 +24,7 @@ ecdh_auto = ["openssl-sys/ecdh_auto"] [dependencies.openssl-sys] path = "../openssl-sys" -version = "0.6.4" +version = "0.6.6" [dependencies] bitflags = ">= 0.2, < 0.4" diff --git a/openssl/src/lib.rs b/openssl/src/lib.rs index 49a7fd4a..5a3b215f 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.5")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.6.6")] #[macro_use] extern crate bitflags; |