mac_address 1.1.0

Cross-platform retrieval of a network interface MAC address.
Documentation
1
2
3
4
5
6
fn main() {
    match std::env::var("TARGET") {
        Ok(ref t) if t.contains("windows") => println!("cargo:rustc-link-lib=iphlpapi"),
        _ => {}
    }
}