update Justfile and fix some warnings

This commit is contained in:
🪞👃🪞 2025-01-09 18:56:32 +01:00
parent 9e4406c66a
commit b995f81a26
11 changed files with 67 additions and 84 deletions

View file

@ -1,9 +1,10 @@
#![feature(associated_type_defaults)]
//mod component; pub use self::component::*;
mod engine; pub use self::engine::*;
mod handle; pub use self::handle::*;
mod command; pub use self::command::*;
mod engine; pub use self::engine::*;
mod input; pub use self::input::*;
mod handle; pub use self::handle::*;
mod command; pub use self::command::*;
mod event_map; pub use self::event_map::*;
pub(crate) use std::marker::PhantomData;