| Crates.io | macnuf |
| lib.rs | macnuf |
| version | 0.1.32+20250922 |
| created_at | 2025-02-12 13:42:34.069517+00 |
| updated_at | 2025-09-22 06:18:01.217085+00 |
| description | A #![no_std] Rust library to get the manufacturer of a specific MAC address |
| homepage | |
| repository | https://github.com/erk-/macnuf |
| max_upload_size | |
| id | 1553022 |
| size | 2,053,985 |
A very simple #![no_std] Rust library to get the manufacturer of a specific MAC address
If you want to use this library for one of your projects, you can install it like any other Rust crate
cargo add macnuf
To get a manufacturer, you simply need to do the following
fn main() {
match macnuf::lookup("00:18:23:ac:09:02".parse().unwrap()) {
Some(manuf) => {
println!("Manufacturer: {}", manuf)
}
None => {
println!("No manufacturer found")
}
}
}
This library is under the MIT License.