Rust port of gophertunnel/query
A library to get information of minecraft using the status ping https://wiki.vg/ServerListPing#Clienttoserver
toml
mcpe_query = "0.1.1"
```rust use mcpe_query::query::handle;
fn main() { let uri = "play.redmc.me:19132".tostring(); let timeout = Some(std::time::Duration::fromsecs(5));
let info = handle(uri, timeout).unwrap();
println!("{:?}", info);
} ```