Get your local ip address in Rust, using hostname -I
under the hood, may not work in older versions of windows
toml
machine-ip = "0.1"
then
```rust extern crate machine_ip;
let ip = machineip::get().unwrap(); println!("local ip address: {:?}", ip.tostring()); ```
MIT