diff options
| author | Steven Fackler <[email protected]> | 2015-11-16 20:39:20 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2015-11-16 21:10:50 -0800 |
| commit | 82547f53d7946bb1d85ca0793d92873328a7632c (patch) | |
| tree | 21e7a32e45992656ddefbf95c3179eb0f914b865 /openssl-sys | |
| parent | Mention why the windows deps are there (diff) | |
| download | rust-openssl-82547f53d7946bb1d85ca0793d92873328a7632c.tar.xz rust-openssl-82547f53d7946bb1d85ca0793d92873328a7632c.zip | |
Release v0.7.0
Diffstat (limited to 'openssl-sys')
| -rw-r--r-- | openssl-sys/Cargo.toml | 4 | ||||
| -rw-r--r-- | openssl-sys/src/lib.rs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml index 6bfabc4e..6d625e7a 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.6.7" +version = "0.7.0" authors = ["Alex Crichton <[email protected]>", "Steven Fackler <[email protected]>"] license = "MIT" description = "FFI bindings to OpenSSL" repository = "https://github.com/sfackler/rust-openssl" -documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.7/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.0/openssl_sys" links = "openssl" build = "build.rs" diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 674b303f..018f8bca 100644 --- a/openssl-sys/src/lib.rs +++ b/openssl-sys/src/lib.rs @@ -1,6 +1,6 @@ #![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)] #![allow(dead_code)] -#![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")] extern crate libc; |