Version 2025.2.10
This release adds a new online
feature to use the most up to date version of the manuf.txt
file. Can be installed with:
cargo add rsmanuf --features online
and then used just like before but with the online
namespace:
fn main() {
let mut index = rsmanuf::online::Index::new();
match index.search("C4:A8:1D:73:D7:8C") {
Ok(manuf) => {
println!("Manufacturer: {}", manuf)
}
Err(error) => {
println!("Error: {}", error)
}
}
}