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 viewport;
13
14pub mod cache;
15pub mod color;
16pub mod compositor;
17pub mod damage;
18pub mod error;
19pub mod gradient;
20pub mod image;
21pub mod layer;
22pub mod mesh;
23pub mod shell;
24pub mod text;
25
26#[cfg(feature = "geometry")]
27pub mod geometry;
28
29pub use antialiasing::Antialiasing;
30pub use cache::Cache;
31pub use compositor::Compositor;
32pub use error::Error;
33pub use gradient::Gradient;
34pub use image::Image;
35pub use layer::Layer;
36pub use mesh::Mesh;
37pub use shell::Shell;
38pub use text::Text;
39pub use viewport::Viewport;
40
41pub use iced_core as core;
42pub use iced_futures as futures;