[package]
edition = "2018"
name = "pdu"
version = "1.5.0"
authors = ["Alex Forster <alex@alexforster.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Small, fast, and correct L2/L3/L4 packet parser."
homepage = "https://github.com/alexforster/pdu"
readme = "README.md"
keywords = [
"ethernet",
"ip",
"tcp",
"udp",
"gre",
]
categories = [
"parsing",
"network-programming",
"no-std",
]
license = "Apache-2.0"
repository = "https://github.com/alexforster/pdu"
[badges.maintenance]
status = "passively-maintained"
[badges.travis-ci]
repository = "alexforster/pdu"
[features]
default = ["std"]
std = []
[lib]
name = "pdu"
path = "src/lib.rs"
[[test]]
name = "tests"
path = "tests/tests.rs"
[dev-dependencies.base16]
version = "^0.2"
[dev-dependencies.pcap]
version = "^2"
[dev-dependencies.roxmltree]
version = "^0.21"
features = ["std"]