gmodx 0.9.5

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 open_close;
pub use open_close::{is_closed, is_open};

pub use gmodx_macros::*;

pub use inventory;

pub mod sync;

mod next_tick_queue;
pub use next_tick_queue::NextTickQueue;

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

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

pub use bstr;