1/* 2 Appellation: slant-anim <library> 3 Contrib: FL03 <jo3mccain@icloud.com> 4*/ 5//! # Animations 6//! 7#![cfg_attr(not(feature = "std"), no_std)] 8 9#[cfg(feature = "alloc")] 10extern crate alloc; 11 12 13pub mod prelude {}