craftping is a Rust library to ping Minecraft Servers.
toml
[dependencies]
craftping = "0.2.1"
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;
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.
Pull requests are welcome. For major issues, please open the issue on this repository first.