spreet 0.13.1

Create a spritesheet from a set of SVG images
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Re-export resvg because its types are used in the spreet API. This removes the need for users of
// spreet to import resvg separately and manage version compatibility.
pub use resvg;

mod error;
pub use error::{SpreetError, SpreetResult};

mod fs;
pub use fs::*;

mod sprite;
pub use sprite::*;