forked from kpcyrd/sniffglue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 880 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "sniffglue"
version = "0.8.0"
description = "Secure multithreaded packet sniffer"
authors = ["kpcyrd <[email protected]>"]
license = "GPL-3.0"
repository = "https://github.com/kpcyrd/sniffglue"
categories = ["command-line-utilities"]
readme = "README.md"
exclude = ["pcaps/**/*", "**/*.pcap"]
[lib]
doc = false
[badges]
travis-ci = { repository = "kpcyrd/sniffglue" }
[dependencies]
clap = "2"
threadpool = "1.7"
num_cpus = "1.6"
pcap = "0.7.0"
pktparse = { version = "0.3", features = ["derive"] }
nom = "4.0"
dns-parser = "0.8"
tls-parser = "0.6"
dhcp4r = "0.1.0"
ansi_term = "0.11"
reduce = "0.1.1"
atty = "0.2"
env_logger = "0.5"
log = "0.4"
toml = "0.4"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
users = "0.7"
nix = "0.11"
sha2 = "0.7"
[target.'cfg(target_os="linux")'.dependencies]
syscallz = "0.7"
[dev-dependencies]
boxxy = "0.7"
base64 = "0.9"