iced_graphics 0.5.0

A bunch of backend-agnostic types that can be leveraged to build a renderer for Iced
Documentation
//! Render images.
#[cfg(feature = "image_rs")]
pub mod raster;

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

pub mod storage;

pub use storage::Storage;