ipconfig 0.1.0

Get network adapters information for windows.
1
2
3
4
5
6
7
extern crate ipconfig;


#[test]
fn no_error() {
    println!("{:#?}", ipconfig::get_adapters().unwrap());
}