Get your local ip address in Rust.
local-ip = "0.1"
then
``` extern crate local_ip;
let ip = localip::get().unwrap(); println!("local ip address: {:?}", ip.tostring()); ```
TODO: Windows support.
MIT or Apache-2.0, at your option.