You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
816 B
31 lines
816 B
[package]
|
|
name = "macaddr"
|
|
version = "1.0.1"
|
|
authors = ["svartalf <self@svartalf.info>"]
|
|
edition = "2018"
|
|
description = "MAC address types"
|
|
repository = "https://github.com/svartalf/rust-macaddr"
|
|
keywords = ["mac", "macaddr", "mac-48", "eui-48", "eui-96"]
|
|
categories = ["data-structures", "network-programming", "no-std"]
|
|
readme = "README.md"
|
|
license = "Apache-2.0 OR MIT"
|
|
exclude = ["/.github", "/fuzz", "/benches"]
|
|
|
|
[badges]
|
|
maintenance = { status = "passively-maintained" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
# https://github.com/rust-lang/cargo/issues/3494
|
|
serde_std = ["std", "serde/std"]
|
|
|
|
[dependencies]
|
|
serde = { version = "^1.0", default-features = false, features = ["derive"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
assert_matches = "1.3.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
features = ["serde", "serde_std"]
|