rpcap 1.0.0

An all-Rust library for reading and writing PCAP files.
Documentation
[package]
name = "rpcap"
version = "1.0.0"
authors = ["Malte Kraus <git@maltekraus.de>"]
repository = "https://github.com/maltek/rpcap"
documentation = "https://docs.rs/rpcap/"
license = "MIT/Apache-2.0"
description="An all-Rust library for reading and writing PCAP files."
exclude = [
    "*.pcap*",
    ".gitignore",
    "out",
]
readme = "README.md"
categories = [
    "network-programming",
]
keywords = [
    "packet",
    "pcap",
    "sniffing",
]
edition = "2021"

[features]
default = []

[dependencies]
bytepack = "0.4.1"
time = { version = "0.1", optional = true }

[dev-dependencies]
rand = "0.8.4"