local-ip 0.1.0

Get your local IP address.
Documentation
1
2
3
4
5
6
7
8
#![feature(alloc_system)]
extern crate alloc_system;

extern crate local_ip;

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