diff options
| author | Steven Fackler <[email protected]> | 2016-01-22 15:57:21 -0800 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-01-22 15:57:21 -0800 |
| commit | 2ece5b10390661085ef397426c3f10ce2f6ed8fc (patch) | |
| tree | 7b480e4ddd427ee67cc912452c78fb087808eace /openssl-sys | |
| parent | Fix connect and accept error reporting (diff) | |
| download | rust-openssl-2ece5b10390661085ef397426c3f10ce2f6ed8fc.tar.xz rust-openssl-2ece5b10390661085ef397426c3f10ce2f6ed8fc.zip | |
Release v0.7.5
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 735c4d51..25957320 100644 --- a/openssl-sys/Cargo.toml +++ b/openssl-sys/Cargo.toml @@ -1,12 +1,12 @@ [package] name = "openssl-sys" -version = "0.7.4" +version = "0.7.5" 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.4/openssl_sys" +documentation = "https://sfackler.github.io/rust-openssl/doc/v0.7.5/openssl_sys" links = "openssl" build = "build.rs" diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs index da99158f..b4e97c1b 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.4")] +#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.7.5")] extern crate libc; |