Skip to content

Commit 26cefe7

Browse files
committed
Switch to docs.rs for docs
1 parent 152d788 commit 26cefe7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![Build Status](https://travis-ci.org/sfackler/rust-openssl.svg?branch=master)](https://travis-ci.org/sfackler/rust-openssl)
44

5-
[Documentation](https://sfackler.github.io/rust-openssl/doc/v0.9.2/openssl).
5+
[Documentation](https://docs.rs/openssl/0.9.2/openssl).
66

77
## Warning
88

openssl-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Alex Crichton <[email protected]>",
66
license = "MIT"
77
description = "FFI bindings to OpenSSL"
88
repository = "https://github.com/sfackler/rust-openssl"
9-
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.2/openssl_sys"
9+
documentation = "https://docs.rs/openssl-sys/0.9.2/openssl_sys"
1010
links = "openssl"
1111
build = "build.rs"
1212

openssl-sys/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#![allow(non_camel_case_types, non_upper_case_globals, non_snake_case)]
22
#![allow(dead_code, overflowing_literals)]
3-
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.9.2")]
3+
#![doc(html_root_url="https://docs.rs/openssl-sys/0.9.2")]
44

55
extern crate libc;
66

openssl/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors = ["Steven Fackler <[email protected]>"]
55
license = "Apache-2.0"
66
description = "OpenSSL bindings"
77
repository = "https://github.com/sfackler/rust-openssl"
8-
documentation = "https://sfackler.github.io/rust-openssl/doc/v0.9.2/openssl"
8+
documentation = "https://docs.rs/openssl/0.9.2/openssl"
99
readme = "../README.md"
1010
keywords = ["crypto", "tls", "ssl", "dtls"]
1111
build = "build.rs"

openssl/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url="https://sfackler.github.io/rust-openssl/doc/v0.9.2")]
1+
#![doc(html_root_url="https://docs.rs/openssl/0.9.2")]
22

33
#[macro_use]
44
extern crate bitflags;

0 commit comments

Comments
 (0)