Skip to content

Version 2025.2.10

Compare
Choose a tag to compare
@kkrypt0nn kkrypt0nn released this 09 Feb 19:36
· 15 commits to main since this release

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)
        }
    }
}