craftping crates.io docs.rs license

craftping is a Rust library to ping Minecraft Servers.

Usage

toml [dependencies] craftping = "0.2.0"

You can synchronously ping to the server with craftping::sync::ping: ```rust use craftping::sync::ping;

fn main() { let pong = ping("localhost", 25565).expect("Cannot ping server"); println!("Ping result: {:?}", pong); } ```

sync module requires sync feature, which is enabled by default.

If you want to send pings asynchronously, you can use craftping::tokio::ping: ```rust use craftping::tokio::ping;

[tokio::main]

fn main() { let pong = ping("localhost", 25565).await.expect("Cannot ping server"); println!("Ping result: {:?}", pong); } ```

Note that tokio module requires async-tokio feature.

Check here for more information about ping result.

Contributing

Pull requests are welcome. For major issues, please open the issue on this repository first.

License

MIT