forked from krishpranav/packetkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
60 lines (55 loc) · 1.33 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
[package]
name = "packetkit"
version = "1.0.0"
description = "Rust Packet Sniffer"
authors = ["krisna pranav"]
license = "GPL-3.0"
repository = "https://github.com/krishpranav/packetkit"
categories = ["command-line-utilities"]
readme = "README.md"
exclude = ["pcaps/**/*", "**/*.pcap"]
edition = "2018"
[package.metadata.deb]
license-file = [ "LICENSE" ]
extended-description = """\
packetkit 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 packetkit 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
[dependencies]
structopt = "0.3"
anyhow = "1"
num_cpus = "1.6"
pcap-sys = "0.1.3"
pktparse = { version = "0.5", features = ["serde"] }
nom = "6"
dns-parser = "0.8"
tls-parser = "0.10"
dhcp4r = "0.2.0"
ansi_term = "0.12"
reduce = "0.1.1"
atty = "0.2"
env_logger = "0.8"
log = "0.4"
toml = "0.5"
serde = "1.0"
serde_json = "1.0"
serde_derive = "1.0"
users = "0.11"
nix = "0.20"
sha2 = "0.9"
dirs-next = "2.0"
base64 = "0.13"
libc = "0.2"
[target.'cfg(target_os="linux")'.dependencies]
syscallz = "0.15"
#syscallz = { path="../syscallz-rs" }
[dev-dependencies]
boxxy = "0.11"