mc-status-probe 0.1.0-alpha.4

A zero-dependency Minecraft Java server status probe based on wiki.vg Server List Ping protocol
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// A zero-dependency Minecraft Java server status probe.
///
/// Implements the [Server List Ping](https://wiki.vg/Server_List_Ping)
/// protocol from scratch, using only `tokio` for networking,
/// `serde_json` for response parsing, and `thiserror` for errors.

pub mod error;
pub mod ping;
pub mod protocol;
pub mod varint;

pub use error::PingError;
pub use ping::{ping, PingResult};
pub use protocol::DEFAULT_PROTOCOL_VERSION;