-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 740 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 740 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 = "pdu"
version = "1.4.2"
description = "Small, fast, and correct L2/L3/L4 packet parser."
readme = "README.md"
authors = ["Alex Forster <alex@alexforster.com>"]
repository = "https://github.com/alexforster/pdu"
homepage = "https://github.com/alexforster/pdu"
keywords = ["ethernet", "ip", "tcp", "udp", "gre"]
categories = ["parsing", "network-programming", "no-std"]
license = "Apache-2.0"
edition = "2018"
[badges]
travis-ci = { repository = "alexforster/pdu" }
maintenance = { status = "passively-maintained" }
[features]
default = ["std"]
std = []
[dev-dependencies]
base16 = { version = "~0.2" }
roxmltree = { version = "~0.14", features = ["std"] }
pcap = { version = "~0.9" }
[workspace]
members = [
"fuzz"
]