rasterlottie 0.2.1

Pure Rust, headless Lottie rasterizer for deterministic server-side rendering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Support analysis module declarations and public exports.

mod analyzer;
mod analyzer_shapes;
mod analyzer_text;

#[cfg(test)]
mod tests;
#[cfg(test)]
mod tests_advanced;

pub use analyzer::{
    SupportProfile, SupportReport, UnsupportedFeature, UnsupportedKind, analyze_animation,
    analyze_animation_with_profile,
};