https://github.com/vaigarashi/eui-no-std
EUI-48 and EUI-64 no-std implementation
https://github.com/vaigarashi/eui-no-std
eui eui-48 eui-64 no-std rust
Last synced: 4 months ago
JSON representation
EUI-48 and EUI-64 no-std implementation
- Host: GitHub
- URL: https://github.com/vaigarashi/eui-no-std
- Owner: vaIgarashi
- License: mit
- Created: 2019-09-17T14:30:30.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-05-25T08:59:29.000Z (about 5 years ago)
- Last Synced: 2025-03-01T21:53:35.100Z (4 months ago)
- Topics: eui, eui-48, eui-64, no-std, rust
- Language: Rust
- Homepage:
- Size: 29.3 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
eui-no-std
============
[](https://crates.io/crates/eui-no-std)
[](https://travis-ci.org/vagola/eui-no-std)
[](https://codecov.io/gh/vagola/eui-no-std)EUI-48 and EUI-64 no-std implementation using heapless.
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
eui-no-std = "0.3"
```Serde support can be enabled using features:
```toml
[dependencies]
eui-no-std = { version = "0.3", default-features = false, features = ["serde"] }
```## Example
```rust
use eui::Eui48;
use eui::Eui64;let eui48 = Eui48::from(85204980412143);
let eui64 = Eui64::from(eui48);
assert_eq!(eui48.to_string(), "4D-7E-54-97-2E-EF");
assert_eq!(eui64.to_string(), "4D-7E-54-00-00-97-2E-EF");
```