gear_objects/
lib.rs

1#![feature(lazy_cell)]
2#![feature(ptr_metadata)]
3#![feature(unsize)]
4
5mod component;
6mod component_id;
7mod type_erased_ptr;
8mod type_id;
9
10pub use component::*;
11pub use component_id::*;
12pub use type_id::*;