Get your local ip address in Rust.
local-ip = "0.2"
then
extern crate local_ip;
let ip = local_ip::get().unwrap();
println!("local ip address: {:?}", ip.to_string());
local-ip
should not rely on any syscall or FFI interfaces (there are other crates for this purpose). As a result, installation should be trivial. Instead, it parses the output of ipconfig
or ifconfig
depending on the OS.
MIT or Apache-2.0, at your option.