rustmotion 0.5.0

A CLI tool that renders motion design videos from JSON scenarios. No browser, no Node.js — just a single Rust binary.
1
2
3
4
5
6
7
8
9
10
11
pub mod constraints;
pub mod flex;
pub mod grid;
pub mod stack;
pub mod tree;

pub use constraints::Constraints;
pub use tree::LayoutNode;

pub use flex::layout_flex;
pub use grid::{layout_grid, layout_grid_with_config};