mmd_anim/lib.rs
1//! Umbrella crate for `mmd-anim`.
2//!
3//! This crate is the main public dependency for applications that want MMD
4//! format import/export and runtime evaluation from one package. Lower-level
5//! crates remain available for users who want narrower dependencies.
6
7pub use mmd_anim_format as format;
8pub use mmd_anim_runtime as runtime;