mkapk-res 0.1.1

Cross-platform audio plugin build and packaging system (Standalone/VST3/AU/AAX) with a shared retained-mode GUI framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Resource system: resource IDs, static embedding, typed registry, and SVG/PNG
//! decoders.
#![deny(unsafe_code)]

pub mod bundle;
pub mod generated;
pub mod id;
pub mod png;
pub mod registry;
pub mod svg;

pub use bundle::{EmbeddedBundle, ResourceBundle};
pub use id::ResourceId;
pub use png::PngImage;
pub use registry::{Font, Image, Resource, ResourceHandle, ResourceRegistry, Svg};
pub use svg::SvgImage;