summaryrefslogtreecommitdiffstats
path: root/lazy/src/lib.rs
blob: e1b06f747b449688ed0a51f008ccf88af0b8dab5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
)]
pub mod component;
pub mod responsive;

#[cfg(feature = "pure")]
pub mod pure;

pub use component::Component;
pub use responsive::Responsive;

mod cache;

use cache::{Cache, CacheBuilder};