-
Notifications
You must be signed in to change notification settings - Fork 16
/
Cargo.toml
32 lines (31 loc) · 991 Bytes
/
Cargo.toml
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
31
32
[package]
name = "snoopy"
version = "0.3.2"
authors = ["kanishkarj <[email protected]>"]
edition = "2018"
exclude = [
"Sample/**/*",
]
description = "A highly configurable multi-threaded packet sniffer and parser."
documentation = "https://github.com/kanishkarj/snoopy"
homepage = "https://github.com/kanishkarj/snoopy"
repository = "https://github.com/kanishkarj/snoopy"
readme = "README.md"
keywords = ["pcap-parser", "packet-capture", "packet-sniffer", "packet-parsing", "command-line-tool"]
categories = ["command-line-utilities", "parsing"]
license-file = "LICENSE"
travis-ci = { repository = "kanishkarj/snoopy", branch = "master" }
maintenance = { status = "actively-developed" }
[dependencies]
clap = "2.33.0"
pcap = "0.7.0"
pktparse = {version = "0.4.0", features = ["derive"]}
dns-parser = "0.8"
tls-parser = "0.7"
hwaddr = "0.1.2"
nom = "5.0.0"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
httparse = "1.3.0"
threadpool = "1.0"
num_cpus = "1.0"