fulgur_chart/lib.rs
1//! Render chart.js-compatible JSON specs to deterministic static SVG/PNG.
2
3pub mod color;
4pub mod font;
5pub mod frontend;
6pub mod guard;
7pub mod ir;
8pub mod layout;
9pub mod model;
10pub mod num;
11pub mod palette;
12pub mod raster_direct;
13pub mod render;
14pub mod scale;
15pub mod scene;
16pub mod schema;
17pub mod svg;
18pub mod text;
19
20pub fn version() -> &'static str {
21 env!("CARGO_PKG_VERSION")
22}