Crates.io | wifi |
lib.rs | wifi |
version | 0.1.0 |
source | src |
created_at | 2017-07-10 18:35:06.459804 |
updated_at | 2017-07-12 04:19:10.614148 |
description | Library for getting wifi information |
homepage | https://github.com/camp4climber/wifi |
repository | https://github.com/camp4climber/wifi |
max_upload_size | |
id | 22895 |
size | 5,717 |
A rust library that will eventually allow for interacting with and getting information about local wifi networks.
Not for production use yet! The code quality is terrible right now as I'm still learning rust, so I appreciate pull requests and or guidance if you have them!
The module uses the following command line tools and assumes they are installed on your system.
get info about current network in osx
extern crate wifi;
use wifi::scanner;
fn main() {
let network_info = scanner::get_info();
println!("{:?}", network_info);
}