local-ip 0.1.0

Get your local IP address.
Documentation
# local-ip

Get your local ip address in Rust.

```
local-ip = "0.1"
```

then

```
extern crate local_ip;

let ip = local_ip::get().unwrap();
println!("local ip address: {:?}", ip.to_string());
```

**TODO:** Windows support.

## License

MIT or Apache-2.0, at your option.