reorganize, add Azimuth

This commit is contained in:
facile pop culture reference 2026-07-06 20:40:52 +03:00
parent bf16288884
commit 1f60b43f61
26 changed files with 677 additions and 594 deletions

View file

@ -18,6 +18,7 @@ pub extern crate unicode_width;
#[cfg(feature = "term")] pub extern crate crossterm;
#[cfg(feature = "lang")] pub extern crate dizzle as lang;
#[cfg(test)] #[macro_use] pub extern crate proptest;
#[cfg(test)] pub(crate) use proptest_derive::Arbitrary;
pub(crate) use ::{
atomic_float::AtomicF64,
@ -47,9 +48,9 @@ features! {
"time": [ time ],
"play": [ exit, task ],
"sing": [ sing ],
"draw": [ draw, space, layout, color ],
"text": [ text ],
"term": [ term ]
"term": [ term ],
"draw": [ draw ]
}
/// Define a trait an implement it for various mutation-enabled wrapper types. */