[package]
edition = "2021"
rust-version = "1.85"
name = "pcap-frame-parser"
version = "0.2.1"
authors = ["casablanque"]
build = false
exclude = [
"Cargo.lock",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-copy parser for legacy PCAP and PCAPng capture files, plus Ethernet/VLAN/IP/UDP/TCP frame dissection. No libpcap dependency."
readme = "README.md"
keywords = [
"pcap",
"pcapng",
"packet",
"ethernet",
"network",
]
categories = [
"network-programming",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/casablanque-code/pcap-frame-parser"
[lib]
name = "pcap_frame_parser"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies.nom]
version = "7"