File tree 9 files changed +9
-17
lines changed
9 files changed +9
-17
lines changed Original file line number Diff line number Diff line change 7
7
8
8
#![ cfg_attr( not( feature = "std" ) , no_std) ]
9
9
10
- #![ warn( missing_docs, missing_debug_implementations) ]
11
- #![ deny( rust_2018_idioms) ]
10
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
12
11
13
12
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_channel" ) ]
14
13
Original file line number Diff line number Diff line change 5
5
6
6
#![ cfg_attr( not( feature = "std" ) , no_std) ]
7
7
8
- #![ warn( missing_docs, missing_debug_implementations) ]
9
- #![ deny( rust_2018_idioms) ]
8
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
10
9
11
10
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_core" ) ]
12
11
Original file line number Diff line number Diff line change 4
4
5
5
#![ cfg_attr( not( feature = "std" ) , no_std) ]
6
6
7
- #![ warn( missing_docs, missing_debug_implementations) ]
8
- #![ deny( rust_2018_idioms) ]
7
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
9
8
10
9
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_executor" ) ]
11
10
Original file line number Diff line number Diff line change 6
6
7
7
#![ cfg_attr( not( feature = "std" ) , no_std) ]
8
8
9
- #![ warn( missing_docs, missing_debug_implementations) ]
10
- #![ deny( rust_2018_idioms) ]
9
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
11
10
12
11
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_io" ) ]
13
12
Original file line number Diff line number Diff line change 1
1
//! The futures-rs `select! macro implementation.
2
2
3
3
#![ recursion_limit="128" ]
4
- #![ deny ( rust_2018_idioms) ]
4
+ #![ warn ( rust_2018_idioms) ]
5
5
6
6
extern crate proc_macro;
7
7
Original file line number Diff line number Diff line change 4
4
//! asynchronously.
5
5
6
6
#![ cfg_attr( not( feature = "std" ) , no_std) ]
7
- #![ warn( missing_docs, missing_debug_implementations) ]
8
- #![ deny( rust_2018_idioms) ]
7
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
9
8
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_sink" ) ]
10
9
11
10
#![ feature( futures_api) ]
Original file line number Diff line number Diff line change 5
5
await_macro,
6
6
futures_api,
7
7
) ]
8
- #![ warn( missing_docs, missing_debug_implementations) ]
9
- #![ deny( rust_2018_idioms) ]
8
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
10
9
#![ doc(
11
10
html_root_url = "https://rust-lang-nursery.github.io/futures-doc/0.3.0-alpha.5/futures_test"
12
11
) ]
Original file line number Diff line number Diff line change 6
6
#![ cfg_attr( feature = "nightly" , feature( cfg_target_has_atomic) ) ]
7
7
8
8
#![ cfg_attr( not( feature = "std" ) , no_std) ]
9
- #![ warn( missing_docs, missing_debug_implementations) ]
10
- #![ deny( rust_2018_idioms) ]
9
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
11
10
12
11
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures_util" ) ]
13
12
Original file line number Diff line number Diff line change 25
25
26
26
#![ cfg_attr( not( feature = "std" ) , no_std) ]
27
27
28
- #![ warn( missing_docs, missing_debug_implementations) ]
29
- #![ deny( rust_2018_idioms) ]
28
+ #![ warn( missing_docs, missing_debug_implementations, rust_2018_idioms) ]
30
29
31
30
#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.12/futures" ) ]
32
31
You can’t perform that action at this time.
0 commit comments