Crates.io | oui-data |
lib.rs | oui-data |
version | 0.2.0 |
source | src |
created_at | 2024-05-10 17:10:53.404795 |
updated_at | 2024-05-15 22:08:59.753404 |
description | Library for looking up information from the IEEE OUI database. |
homepage | |
repository | https://github.com/jwalton/rs-oui-data |
max_upload_size | |
id | 1236211 |
size | 4,886,374 |
A Rust library for looking up information from the IEEE OUI database.
Use the lookup
function to lookup a MAC address in the MA-L, MA-M, MA-S, CID, and IAB registries.
let record = oui::lookup("00:00:00:00:00:00").unwrap();
assert_eq!(record.organization(), "XEROX CORPORATION");
This library is largely generated code, derived from data hosted at http://standards-oui.ieee.org.
To build with updated records, run ./update_data.sh
to update the CSV files, then just cargo build
as usual.