-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Cargo.toml
63 lines (57 loc) · 1.58 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "sniffglue"
version = "0.16.1"
description = "Secure multithreaded packet sniffer"
authors = ["kpcyrd <[email protected]>"]
license = "GPL-3.0-or-later"
repository = "https://github.com/kpcyrd/sniffglue"
categories = ["command-line-utilities"]
readme = "README.md"
exclude = ["pcaps/**/*", "**/*.pcap"]
edition = "2021"
[package.metadata.deb]
license-file = [ "LICENSE" ]
extended-description = """\
sniffglue is a network sniffer written in rust. Network packets are parsed \
concurrently using a thread pool to utilize all cpu cores. Project goals are \
that you can run sniffglue securely on untrusted networks and that it must \
not crash when processing packets. The output should be as useful as possible \
by default.\
"""
depends = "$auto"
section = "net"
priority = "optional"
[lib]
doc = false
[badges]
travis-ci = { repository = "kpcyrd/sniffglue" }
[dependencies]
anyhow = "1"
num_cpus = "1.6"
pcap-sys = "0.1.3"
pktparse = { version = "0.7.1", features = ["serde"] }
nom = "7"
dns-parser = "0.8"
tls-parser = "0.12"
dhcp4r = "0.2.0"
ansi_term = "0.12"
env_logger = "0.11"
log = "0.4"
toml = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
nix = { version = "0.29", features = ["fs", "user"] }
sha2 = "0.10"
dirs-next = "2.0"
libc = "0.2"
uzers = "0.12"
bstr = { version = "1", features = ["serde"] }
data-encoding = "2.5.0"
clap = { version = "4.4.11", features = ["derive"] }
clap_complete = "4.4.4"
httparse = "1.8.0"
[target.'cfg(target_os="linux")'.dependencies]
syscallz = "0.17"
#syscallz = { path="../syscallz-rs" }
[dev-dependencies]
boxxy = "0.13"