diff options
| author | Steven Fackler <[email protected]> | 2016-08-11 21:00:43 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-08-11 21:00:43 -0700 |
| commit | 2e8f19ca2fc889e9f143ecda997e17e7955683ab (patch) | |
| tree | 22dc99a726321cd8228004c34c40ca4a0648c594 /openssl-sys | |
| parent | Require bitflags 7 (diff) | |
| download | rust-openssl-2e8f19ca2fc889e9f143ecda997e17e7955683ab.tar.xz rust-openssl-2e8f19ca2fc889e9f143ecda997e17e7955683ab.zip | |
Release openssl-sys v0.7.15, openssl v0.8.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 d1c0bd80..e09c2020 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.7.14" +version = "0.7.15" 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.7.14/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.15/openssl_sys" links = "openssl" build = "build.rs" diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index 7058e194..24d3bf57 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.7.14")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.15")] extern crate libc; |