1 2 3 4 5 6 7 8 9 10 11 12 13 14
extern crate simd; // Forked from https://github.com/SimonSapin/rust-forest/blob/master/rctree/lib.rs // because the crate is not available anymore on crates.io. MIT License Simon Sapin pub mod rctree; pub mod rect; pub mod ui_screen; pub mod node_data; pub use rctree::NodeRef as NodeRef; pub use rect::Rect; pub use ui_screen::UiScreen; pub use node_data::{NodeData, FlexDirection};