Skip to content

Commit bc5d3e6

Browse files
MajorBreakfastcramertj
authored andcommitted
Change doc URLs to .../futures-api-docs
1 parent 42a97c0 commit bc5d3e6

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</p>
1818

1919
<p align="center">
20-
<a href="https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures/">
20+
<a href="https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures/">
2121
Documentation
2222
</a> | <a href="https://rust-lang-nursery.github.io/futures-rs/">
2323
Website

futures-channel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_channel"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_channel"
1212
description = """
1313
Channels for asynchronous communication using futures-rs.
1414
"""

futures-channel/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
#![warn(missing_docs, missing_debug_implementations)]
1111
#![deny(bare_trait_objects)]
1212

13-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_channel")]
13+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_channel")]
1414

1515
macro_rules! if_std {
1616
($($i:item)*) => ($(

futures-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_core"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_core"
1212
description = """
1313
The core traits and types in for the `futures` library.
1414
"""

futures-core/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![warn(missing_docs, missing_debug_implementations)]
88
#![deny(bare_trait_objects)]
99

10-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_core")]
10+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_core")]
1111

1212
#[doc(hidden)] pub use crate::future::Future;
1313
#[doc(hidden)] pub use crate::future::TryFuture;

futures-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_executor"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_executor"
1212
description = """
1313
Executors for asynchronous tasks based on the futures-rs library.
1414
"""

futures-executor/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#![warn(missing_docs, missing_debug_implementations)]
88
#![deny(bare_trait_objects)]
99

10-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_executor")]
10+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_executor")]
1111

1212
macro_rules! if_std {
1313
($($i:item)*) => ($(

futures-io/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_io"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_io"
1212
description = """
1313
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
1414
"""

futures-io/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![warn(missing_docs, missing_debug_implementations)]
1010
#![deny(bare_trait_objects)]
1111

12-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_io")]
12+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_io")]
1313

1414
#![feature(futures_api)]
1515

futures-sink/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_sink"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_sink"
1212
description = """
1313
The asynchronous `Sink` trait for the futures-rs library.
1414
"""

futures-sink/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
#![no_std]
77
#![warn(missing_docs, missing_debug_implementations)]
8-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_sink")]
8+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_sink")]
99

1010
#![feature(pin, arbitrary_self_types, futures_api)]
1111

futures-util/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ authors = ["Alex Crichton <[email protected]>"]
88
license = "MIT OR Apache-2.0"
99
repository = "https://github.com/rust-lang-nursery/futures-rs"
1010
homepage = "https://rust-lang-nursery.github.io/futures-rs"
11-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_util"
11+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_util"
1212
description = """
1313
Common utilities and extension traits for the futures-rs library.
1414
"""

futures-util/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
#![deny(bare_trait_objects)]
1010
#![allow(unknown_lints)]
1111

12-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures_util")]
12+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures_util")]
1313

1414
macro_rules! if_std {
1515
($($i:item)*) => ($(

futures/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ readme = "../README.md"
1010
keywords = ["futures", "async", "future"]
1111
repository = "https://github.com/rust-lang-nursery/futures-rs"
1212
homepage = "https://rust-lang-nursery.github.io/futures-rs"
13-
documentation = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures"
13+
documentation = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures"
1414
description = """
1515
An implementation of futures and streams featuring zero allocations,
1616
composability, and iterator-like interfaces.

futures/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
#![warn(missing_docs, missing_debug_implementations)]
2929
#![deny(bare_trait_objects)]
3030

31-
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.2/futures")]
31+
#![doc(html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.2/futures")]
3232

3333
#![cfg_attr(feature = "nightly", feature(cfg_target_has_atomic))]
3434
#![cfg_attr(feature = "nightly", feature(use_extern_macros))]

0 commit comments

Comments
 (0)