machine-ip 0.2.1

Get your machine's local IP address.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate machine_ip;

fn main() {
    println!(
        "{}",
        machine_ip::get()
            .expect("Could not find local IP address.")
            .to_string()
    );
}