Skip to content

Commit 95c47df

Browse files
taiki-ecramertj
authored andcommitted
Use docs.rs as default documentation
1 parent 71f1e05 commit 95c47df

File tree

21 files changed

+27
-19
lines changed

21 files changed

+27
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</p>
2222

2323
<p align="center">
24-
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures/">
24+
<a href="https://docs.rs/futures-preview/">
2525
Documentation
2626
</a> | <a href="https://rust-lang-nursery.github.io/futures-rs/">
2727
Website

futures-channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_channel"
9+
documentation = "https://docs.rs/futures-channel-preview/0.3.0-alpha.19"
1010
description = """
1111
Channels for asynchronous communication using futures-rs.
1212
"""

futures-channel/src/lib.rs

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

1818
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1919

20-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_channel")]
20+
#![doc(html_root_url = "https://docs.rs/futures-channel-preview/0.3.0-alpha.19")]
2121

2222
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
2323
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_core"
9+
documentation = "https://docs.rs/futures-core-preview/0.3.0-alpha.19"
1010
description = """
1111
The core traits and types in for the `futures` library.
1212
"""

futures-core/src/lib.rs

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

1212
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1313

14-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_core")]
14+
#![doc(html_root_url = "https://docs.rs/futures-core-preview/0.3.0-alpha.19")]
1515

1616
#[cfg(all(feature = "cfg-target-has-atomic", not(feature = "unstable")))]
1717
compile_error!("The `cfg-target-has-atomic` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_executor"
9+
documentation = "https://docs.rs/futures-executor-preview/0.3.0-alpha.19"
1010
description = """
1111
Executors for asynchronous tasks based on the futures-rs library.
1212
"""

futures-executor/src/lib.rs

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

1313
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
1414

15-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_executor")]
15+
#![doc(html_root_url = "https://docs.rs/futures-executor-preview/0.3.0-alpha.19")]
1616

1717
#[cfg(feature = "std")]
1818
mod local_pool;

futures-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Alex Crichton <alex@alexcrichton.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_io"
9+
documentation = "https://docs.rs/futures-io-preview/0.3.0-alpha.19"
1010
description = """
1111
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
1212
"""

futures-io/src/lib.rs

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

2020
#![doc(test(attr(deny(warnings), allow(dead_code, unused_assignments, unused_variables))))]
2121

22-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_io")]
22+
#![doc(html_root_url = "https://docs.rs/futures-io-preview/0.3.0-alpha.19")]
2323

2424
#[cfg(all(feature = "read_initializer", not(feature = "unstable")))]
2525
compile_error!("The `read_initializer` feature requires the `unstable` feature as an explicit opt-in to unstable features");

futures-join-macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Taiki Endo <te316e89@gmail.com>"]
66
license = "MIT OR Apache-2.0"
77
repository = "https://github.com/rust-lang-nursery/futures-rs"
88
homepage = "https://rust-lang-nursery.github.io/futures-rs"
9-
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.19/futures_join_macro"
9+
documentation = "https://docs.rs/futures-join-macro-preview/0.3.0-alpha.19"
1010
description = """
1111
Definition of the `join!` macro and the `try_join!` macro.
1212
"""

0 commit comments

Comments
 (0)