macaddr-ouidb 0.1.6

Mac Address and OUI(Organizationally Unique Identifiers) database
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "macaddr-ouidb"
version = "0.1.6"
authors = ["Ting Lou <ting.lou@gmail.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Mac Address and OUI(Organizationally Unique Identifiers) database"
documentation = "https://docs.rs/macaddr-ouidb/"
readme = "README.md"
keywords = [
    "mac",
    "oui",
    "eui48",
    "wireshark",
    "lookup",
]
categories = [
    "network-programming",
    "no-std::no-alloc",
    "no-std",
]
license = "Apache-2.0"
repository = "https://github.com/tinglou/oh-my-rust-crates"
resolver = "2"

[features]
default = [
    "std",
    "serde",
    "pnet",
    "ma-s",
]
ma-s = []
pnet = []
serde = ["dep:serde"]
std = [
    "pnet_base/std",
    "serde/std",
    "thiserror/std",
]

[lib]
name = "macaddr_ouidb"
path = "src/lib.rs"

[[bin]]
name = "macaddr-ouidb"
path = "src/main.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[dependencies.pnet_base]
version = "0.35.0"
default-features = false

[dependencies.serde]
version = "1.0.228"
optional = true
default-features = false

[dependencies.thiserror]
version = "2.0.18"
default-features = false