[package]
edition = "2021"
rust-version = "1.56.0"
name = "ethertype"
version = "0.3.3"
build = false
include = [
"**/*.rs",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "IEEE 802 EtherType with protocol descriptions"
documentation = "https://docs.rs/ethertype"
readme = "README.md"
keywords = [
"ethernet",
"ethertype",
"iana",
"ieee",
]
license = "MIT"
repository = "https://github.com/wojciech-graj/ethertype-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
default = [
"desc",
"std",
]
desc = []
iana = []
ieee = []
serde = ["serde_cr"]
std = []
[lib]
name = "ethertype"
path = "src/lib.rs"
[dependencies.serde_cr]
version = "1.0"
optional = true
default-features = false
package = "serde"
[dev-dependencies.serde_test]
version = "1.0"