initial text impl

This commit is contained in:
2025-08-23 21:15:39 -04:00
parent abcbc267b5
commit 5ce6fca275
33 changed files with 530 additions and 117 deletions

View File

@@ -5,13 +5,16 @@
#![feature(trait_alias)]
#![feature(negative_impls)]
mod core;
mod layout;
pub mod core;
pub mod layout;
pub mod render;
mod util;
pub use core::*;
pub use layout::*;
pub mod prelude {
pub use crate::core::*;
pub use crate::layout::*;
pub use crate::render::*;
}
pub type HashMap<K, V> = std::collections::HashMap<K, V>;
pub type HashSet<K> = std::collections::HashSet<K>;