Merge pull request #2188 from fogarecious/add_doc
Add doc to direct developers to enable features for iced::time::every
This commit is contained in:
commit
6f97b62457
3 changed files with 11 additions and 0 deletions
|
|
@ -92,6 +92,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
- `size_hint` not being called from `element::Explain`. [#2225](https://github.com/iced-rs/iced/pull/2225)
|
- `size_hint` not being called from `element::Explain`. [#2225](https://github.com/iced-rs/iced/pull/2225)
|
||||||
- Slow touch scrolling for `TextEditor` widget. [#2140](https://github.com/iced-rs/iced/pull/2140)
|
- Slow touch scrolling for `TextEditor` widget. [#2140](https://github.com/iced-rs/iced/pull/2140)
|
||||||
- `Subscription::map` using unreliable function pointer hash to identify mappers. [#2237](https://github.com/iced-rs/iced/pull/2237)
|
- `Subscription::map` using unreliable function pointer hash to identify mappers. [#2237](https://github.com/iced-rs/iced/pull/2237)
|
||||||
|
- Missing feature flag docs for `time::every`. [#2188](https://github.com/iced-rs/iced/pull/2188)
|
||||||
|
|
||||||
Many thanks to...
|
Many thanks to...
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -159,6 +159,7 @@
|
||||||
rustdoc::broken_intra_doc_links
|
rustdoc::broken_intra_doc_links
|
||||||
)]
|
)]
|
||||||
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
|
||||||
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
||||||
use iced_widget::graphics;
|
use iced_widget::graphics;
|
||||||
use iced_widget::renderer;
|
use iced_widget::renderer;
|
||||||
use iced_widget::style;
|
use iced_widget::style;
|
||||||
|
|
|
||||||
|
|
@ -2,4 +2,13 @@
|
||||||
pub use iced_core::time::{Duration, Instant};
|
pub use iced_core::time::{Duration, Instant};
|
||||||
|
|
||||||
#[allow(unused_imports)]
|
#[allow(unused_imports)]
|
||||||
|
#[cfg_attr(
|
||||||
|
docsrs,
|
||||||
|
doc(cfg(any(
|
||||||
|
feature = "tokio",
|
||||||
|
feature = "async-std",
|
||||||
|
feature = "smol",
|
||||||
|
target_arch = "wasm32"
|
||||||
|
)))
|
||||||
|
)]
|
||||||
pub use iced_futures::backend::default::time::*;
|
pub use iced_futures::backend::default::time::*;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue