File tree 15 files changed +15
-15
lines changed
15 files changed +15
-15
lines changed Original file line number Diff line number Diff line change 17
17
</p >
18
18
19
19
<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/ " >
21
21
Documentation
22
22
</a > | <a href =" https://rust-lang-nursery.github.io/futures-rs/ " >
23
23
Website
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
Channels for asynchronous communication using futures-rs.
14
14
"""
Original file line number Diff line number Diff line change 10
10
#![ warn( missing_docs, missing_debug_implementations) ]
11
11
#![ deny( bare_trait_objects) ]
12
12
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" ) ]
14
14
15
15
macro_rules! if_std {
16
16
( $( $i: item) * ) => ( $(
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
The core traits and types in for the `futures` library.
14
14
"""
Original file line number Diff line number Diff line change 7
7
#![ warn( missing_docs, missing_debug_implementations) ]
8
8
#![ deny( bare_trait_objects) ]
9
9
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" ) ]
11
11
12
12
#[ doc( hidden) ] pub use crate :: future:: Future ;
13
13
#[ doc( hidden) ] pub use crate :: future:: TryFuture ;
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
Executors for asynchronous tasks based on the futures-rs library.
14
14
"""
Original file line number Diff line number Diff line change 7
7
#![ warn( missing_docs, missing_debug_implementations) ]
8
8
#![ deny( bare_trait_objects) ]
9
9
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" ) ]
11
11
12
12
macro_rules! if_std {
13
13
( $( $i: item) * ) => ( $(
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
The `AsyncRead` and `AsyncWrite` traits for the futures-rs library.
14
14
"""
Original file line number Diff line number Diff line change 9
9
#![ warn( missing_docs, missing_debug_implementations) ]
10
10
#![ deny( bare_trait_objects) ]
11
11
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" ) ]
13
13
14
14
#![ feature( futures_api) ]
15
15
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
The asynchronous `Sink` trait for the futures-rs library.
14
14
"""
Original file line number Diff line number Diff line change 5
5
6
6
#![ no_std]
7
7
#![ 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" ) ]
9
9
10
10
#![ feature( pin, arbitrary_self_types, futures_api) ]
11
11
Original file line number Diff line number Diff line change 8
8
license = " MIT OR Apache-2.0"
9
9
repository = " https://github.com/rust-lang-nursery/futures-rs"
10
10
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"
12
12
description = """
13
13
Common utilities and extension traits for the futures-rs library.
14
14
"""
Original file line number Diff line number Diff line change 9
9
#![ deny( bare_trait_objects) ]
10
10
#![ allow( unknown_lints) ]
11
11
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" ) ]
13
13
14
14
macro_rules! if_std {
15
15
( $( $i: item) * ) => ( $(
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ readme = "../README.md"
10
10
keywords = [" futures" , " async" , " future" ]
11
11
repository = " https://github.com/rust-lang-nursery/futures-rs"
12
12
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"
14
14
description = """
15
15
An implementation of futures and streams featuring zero allocations,
16
16
composability, and iterator-like interfaces.
Original file line number Diff line number Diff line change 28
28
#![ warn( missing_docs, missing_debug_implementations) ]
29
29
#![ deny( bare_trait_objects) ]
30
30
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" ) ]
32
32
33
33
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
34
34
#![ cfg_attr( feature = "nightly" , feature( use_extern_macros) ) ]
You can’t perform that action at this time.
0 commit comments