aboutsummaryrefslogtreecommitdiff
path: root/openssl-sys
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2015-06-25 23:22:20 -0700
committerSteven Fackler <[email protected]>2015-06-25 23:22:20 -0700
commit315cfecc74dd96ef56175ba479537dfeb5fe9843 (patch)
treebe5f06fb47ed3903af2a74459eba8f119796f437 /openssl-sys
parentAdd a test for connection negotiation failure (diff)
parentRelease v0.6.3 (diff)
downloadrust-openssl-0.6.3.tar.xz
rust-openssl-0.6.3.zip
Merge branch 'release-v0.6.3' into releasev0.6.3
Diffstat (limited to 'openssl-sys')
-rw-r--r--openssl-sys/Cargo.toml4
-rw-r--r--openssl-sys/src/lib.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/openssl-sys/Cargo.toml b/openssl-sys/Cargo.toml
index fd1e425a..f3fbfc18 100644
--- a/openssl-sys/Cargo.toml
+++ b/openssl-sys/Cargo.toml
@@ -1,12 +1,12 @@
[package]
name = "openssl-sys"
-version = "0.6.2"
+version = "0.6.3"
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/openssl_sys"
+documentation = "https://sfackler.github.io/rust-openssl/doc/v0.6.3/openssl_sys"
links = "openssl"
build = "build.rs"
diff --git a/openssl-sys/src/lib.rs b/openssl-sys/src/lib.rs
index 8437a80f..d77264be 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")]
+#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.6.3")]
extern crate libc;