teestatus 0.1.2

Library to retrieve information from teeworlds servers and related mods.
Documentation
# teestatus
[![Crates.io](https://meritbadge.herokuapp.com/teestatus)](https://crates.io/crates/teestatus)
![Rust](https://github.com/edg-l/teestatus/workflows/Rust/badge.svg)
[![Docs](https://docs.rs/teestatus/badge.svg)](https://docs.rs/teestatus)

Request info about teeworlds servers.

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

fn main() {
	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());
}
```