File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -92,6 +92,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9292- ` size_hint ` not being called from ` element::Explain ` . [ #2225 ] ( https://github.com/iced-rs/iced/pull/2225 )
9393- Slow touch scrolling for ` TextEditor ` widget. [ #2140 ] ( https://github.com/iced-rs/iced/pull/2140 )
9494- ` Subscription::map ` using unreliable function pointer hash to identify mappers. [ #2237 ] ( https://github.com/iced-rs/iced/pull/2237 )
95+ - Missing feature flag docs for ` time::every ` . [ #2188 ] ( https://github.com/iced-rs/iced/pull/2188 )
9596
9697Many thanks to...
9798
Original file line number Diff line number Diff line change 159159 rustdoc:: broken_intra_doc_links
160160) ]
161161#![ cfg_attr( docsrs, feature( doc_auto_cfg) ) ]
162+ #![ cfg_attr( docsrs, feature( doc_cfg) ) ]
162163use iced_widget:: graphics;
163164use iced_widget:: renderer;
164165use iced_widget:: style;
Original file line number Diff line number Diff line change 22pub use iced_core:: time:: { Duration , Instant } ;
33
44#[ allow( unused_imports) ]
5+ #[ cfg_attr(
6+ docsrs,
7+ doc( cfg( any(
8+ feature = "tokio" ,
9+ feature = "async-std" ,
10+ feature = "smol" ,
11+ target_arch = "wasm32"
12+ ) ) )
13+ ) ]
514pub use iced_futures:: backend:: default:: time:: * ;
You can’t perform that action at this time.
0 commit comments