mc_status_probe/lib.rs
1/// A zero-dependency Minecraft Java server status probe.
2///
3/// Implements the [Server List Ping](https://wiki.vg/Server_List_Ping)
4/// protocol from scratch, using only `tokio` for networking,
5/// `serde_json` for response parsing, and `thiserror` for errors.
6
7pub mod error;
8pub mod ping;
9pub mod protocol;
10pub mod varint;
11
12pub use error::PingError;
13pub use ping::{ping, PingResult};
14pub use protocol::DEFAULT_PROTOCOL_VERSION;