pcap-parser 0.6.0

Parser for the PCAP/PCAPNG format
Documentation
[package]
name = "pcap-parser"
version = "0.6.0"
description = "Parser for the PCAP/PCAPNG format"
license = "MIT/Apache-2.0"
keywords = ["pcap","pcapng","parser","nom"]
homepage = "https://github.com/rusticata/pcap-parser"
repository = "https://github.com/rusticata/pcap-parser.git"
authors = ["Pierre Chifflier <chifflier@wzdftpd.net>"]

readme = "README.md"
categories = ["network-programming", "parser-implementations"]
edition = "2018"

include = [
  "LICENSE-*",
  "README.md",
  ".gitignore",
  ".travis.yml",
  "Cargo.toml",
  "assets/*.pcap",
  "assets/*.pcapng",
  "src/*.rs",
  "tests/*.rs"
]

[features]
default = []

# include parsers for data (depending on linktype)
data = []

[package.metadata.docs.rs]
features = [ "data" ]
all-features = true

[dependencies]
byteorder = "1"
circular = "0.3"
cookie-factory = "0.2"
nom = "4.0"
rusticata-macros = "1.1"

[dev-dependencies]
hex-literal = "0.2"

[badges]
travis-ci = { repository = "rusticata/pcap-parser" }