File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
66#![ feature( pin, arbitrary_self_types, futures_api) ]
77
8- #![ no_std]
8+ #![ cfg_attr ( not ( feature = "std" ) , no_std) ]
99
1010#![ warn( missing_docs, missing_debug_implementations) ]
1111#![ deny( bare_trait_objects) ]
Original file line number Diff line number Diff line change 22
33#![ feature( pin, arbitrary_self_types, futures_api) ]
44
5- #![ no_std]
5+ #![ cfg_attr ( not ( feature = "std" ) , no_std) ]
66
77#![ warn( missing_docs, missing_debug_implementations) ]
88#![ deny( bare_trait_objects) ]
Original file line number Diff line number Diff line change 44//! asynchronous analogs to `std::io::{Read, Write}`. The primary difference is
55//! that these traits integrate with the asynchronous task system.
66
7- #![ no_std]
7+ #![ cfg_attr ( not ( feature = "std" ) , no_std) ]
88
99#![ warn( missing_docs, missing_debug_implementations) ]
1010#![ deny( bare_trait_objects) ]
Original file line number Diff line number Diff line change 33//! This crate contains the `Sink` trait which allows values to be sent
44//! asynchronously.
55
6- #![ no_std]
6+ #![ cfg_attr ( not ( feature = "std" ) , no_std) ]
77#![ warn( missing_docs, missing_debug_implementations) ]
88#![ doc( html_root_url = "https://rust-lang-nursery.github.io/futures-api-docs/0.3.0-alpha.8/futures_sink" ) ]
99
Original file line number Diff line number Diff line change 2323
2424#![ feature( pin, arbitrary_self_types, futures_api) ]
2525
26- #![ no_std]
26+ #![ cfg_attr ( not ( feature = "std" ) , no_std) ]
2727
2828#![ warn( missing_docs, missing_debug_implementations) ]
2929#![ deny( bare_trait_objects) ]
You can’t perform that action at this time.
0 commit comments