-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 806 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 806 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "net-parser-rs"
version = "0.3.0"
authors = ["ProtectWise, Inc. <https://www.protectwise.com>", "dbcfd <bdbrowning2@gmail.com>", "Eric Stevens <eric.stevens@protectwise.com>"]
description = "Basic network parser leveraging Rust and nom for safe and efficient packet parsing. Design influenced by pktparse-rs."
edition = "2018"
license = "MIT"
repository = "https://github.com/protectwise/net-parser-rs/"
readme = "README.md"
keywords=["pcap","packet","network"]
categories=["encoding","network-programming","parsing"]
[dependencies]
arrayref = "0.3"
byteorder = "1.3"
nom = "4"
log = "0.4"
thiserror = "1.0"
[dev-dependencies]
criterion = "0.2"
env_logger = "0.6"
hex-slice = "0.1"
regex = "1"
hex = "0.3"
[[bench]]
path = "benches/benches.rs"
name = "bench_net_parser"
harness = false