rustmotion 0.7.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
Documentation
1
2
3
4
5
6
fn main() {
    if let Err(e) = rustmotion::cli::run() {
        eprintln!("Error: {}", e);
        std::process::exit(1);
    }
}