decal 0.6.0

Declarative DSL for describing scenes and rendering them to SVG or PNG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod block;
mod column;
mod flex;
mod image;
mod row;
mod text;

pub use block::*;
pub use column::*;
pub use flex::*;
pub use image::*;
pub use row::*;
pub use text::*;

#[cfg(feature = "grid")]
mod grid;
#[cfg(feature = "grid")]
pub use grid::*;