gmodx 0.25.0

A swiss army knife for creating binary modules for Garry's Mod in Rust
Documentation
#[macro_use]
pub mod macros;

pub mod lua;

pub mod tick;
pub use tick::{flush_next_tick, next_tick, on_tick};

pub mod timer;

pub mod open_close;
pub use open_close::{is_closed, is_main_thread, is_open};

pub use gmodx_macros::*;

pub use inventory;

pub mod sync;

#[cfg(feature = "tokio")]
pub mod tokio_tasks;

pub use bstr;