1#![doc(
8    html_logo_url = "https://raw.githubusercontent.com/iced-rs/iced/9ab6923e943f784985e9ef9ca28b10278297225d/docs/logo.svg"
9)]
10#![cfg_attr(docsrs, feature(doc_cfg))]
11mod antialiasing;
12mod settings;
13mod viewport;
14
15pub mod cache;
16pub mod color;
17pub mod compositor;
18pub mod damage;
19pub mod error;
20pub mod gradient;
21pub mod image;
22pub mod layer;
23pub mod mesh;
24pub mod shell;
25pub mod text;
26
27#[cfg(feature = "geometry")]
28pub mod geometry;
29
30pub use antialiasing::Antialiasing;
31pub use cache::Cache;
32pub use compositor::Compositor;
33pub use error::Error;
34pub use gradient::Gradient;
35pub use image::Image;
36pub use layer::Layer;
37pub use mesh::Mesh;
38pub use settings::Settings;
39pub use shell::Shell;
40pub use text::Text;
41pub use viewport::Viewport;
42
43pub use iced_core as core;
44pub use iced_futures as futures;