diff options
| author | Steven Fackler <[email protected]> | 2016-02-10 09:38:40 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-02-10 09:38:40 -0800 |
| commit | 4af4183e1f29c4ba979504b98d7315d8f033cf58 (patch) | |
| tree | a08ec37e8e43c72d9e0a25c4584c5728c69a74f1 /openssl-sys | |
| parent | More deprecated function cleanup (diff) | |
| parent | Merge branch 'release-v0.7.6' into release (diff) | |
| download | rust-openssl-4af4183e1f29c4ba979504b98d7315d8f033cf58.tar.xz rust-openssl-4af4183e1f29c4ba979504b98d7315d8f033cf58.zip | |
Merge branch 'release'
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 25957320..c8410104 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.7.5" +version = "0.7.6" 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.5/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.6/openssl_sys" links = "openssl" build = "build.rs" diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index ff221935..eb2717f3 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.5")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.6")] extern crate libc; |