1
2
3
4
5
6
7
8
9
10
//! Render images.
#[cfg(feature = "image_rs")]
pub mod raster;

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

pub mod storage;

pub use storage::Storage;