teestatus 0.1.1

Library to retrieve information from teeworlds servers and related mods.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# teestatus
Request info about teeworlds servers.

Example
```rust,no_run
# use teestatus::*;
# use std::net::UdpSocket;

env_logger::init();
let sock = UdpSocket::bind("0.0.0.0:0").expect("can't bind socket");
sock.connect("0.0.0.0:8303")
	.expect("can't connect socket");
println!("info: {:#?}", ServerInfo::new(&sock).unwrap());
```