msp 0.1.2

Fast and lightweight Minecraft Server protocol client implemented in Rust.
Documentation
1
2
3
4
5
6
7
use msp::{get_lan_server_status, MspErr, SocketConf};

fn main() -> Result<(), MspErr> {
    get_lan_server_status(&SocketConf::default())?;

    Ok(())
}