2022-05-02 20:33:10 +02:00
|
|
|
#![doc(
|
|
|
|
|
html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
|
|
|
|
|
)]
|
2022-05-02 21:01:25 +02:00
|
|
|
#![cfg_attr(docsrs, feature(doc_cfg))]
|
2021-11-07 18:15:01 +07:00
|
|
|
pub mod component;
|
2022-01-12 11:15:05 +07:00
|
|
|
pub mod responsive;
|
2021-11-07 18:15:01 +07:00
|
|
|
|
2022-02-17 19:08:54 +07:00
|
|
|
#[cfg(feature = "pure")]
|
2022-05-02 21:01:25 +02:00
|
|
|
#[cfg_attr(docsrs, doc(cfg(feature = "pure")))]
|
2022-02-17 19:08:54 +07:00
|
|
|
pub mod pure;
|
|
|
|
|
|
2021-11-07 18:15:01 +07:00
|
|
|
pub use component::Component;
|
2022-01-12 11:15:05 +07:00
|
|
|
pub use responsive::Responsive;
|
|
|
|
|
|
|
|
|
|
mod cache;
|
|
|
|
|
|
|
|
|
|
use cache::{Cache, CacheBuilder};
|