5 releases (2 stable)

1.0.1 Feb 28, 2020
1.0.0 Jan 2, 2020
0.1.2 Oct 17, 2019
0.1.1 May 23, 2019
0.1.0 May 23, 2019

#234 in Network programming

Download history 14680/week @ 2023-11-21 18149/week @ 2023-11-28 18004/week @ 2023-12-05 18956/week @ 2023-12-12 12687/week @ 2023-12-19 6297/week @ 2023-12-26 13548/week @ 2024-01-02 16661/week @ 2024-01-09 19623/week @ 2024-01-16 22176/week @ 2024-01-23 19442/week @ 2024-01-30 16958/week @ 2024-02-06 21976/week @ 2024-02-13 19678/week @ 2024-02-20 17647/week @ 2024-02-27 18362/week @ 2024-03-05

81,091 downloads per month
Used in 50 crates (20 directly)

Apache-2.0 OR MIT

32KB
523 lines

macaddr

MAC address types for Rust

Latest Version Latest Version Build Status Coverage Status Minimum rustc version Apache 2.0 OR MIT licensed unsafe forbidden

This crate provides types for a MAC address identifiers, both in IEEE EUI-48 and EUI-64 formats.

It is like a std::net::SocketAddr enum with a std::net::SocketAddrV4 and std::net::SocketAddrV6 members, but for MAC addresses instead.

Obviously, MAC address can be represented as a [u8; 6] or [u8; 8], but it is error-prone and inconvenient, so here they are — MacAddr6 and MacAddr8 structs with helpful methods and standard Rust traits implementations, intended to be the first-class Rust objects.

And it is serde- and no_std-friendly also!

Installation

Add this to your Cargo.toml

[dependencies]
macaddr = "1.0"

Usage

Check out the documentation for each type available, all of them have a plenty of examples.

License

Licensed under either of Apache License 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~180KB