-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
67 lines (51 loc) · 1.46 KB
/
Cargo.toml
File metadata and controls
67 lines (51 loc) · 1.46 KB
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
64
65
66
67
[package]
name = "netgrep"
version = "0.1.0"
edition = "2024"
rust-version = "1.91"
readme = "README.md"
authors = ["George Larson"]
description = "A modern replacement for ngrep — live packet capture with TCP reassembly, TLS 1.2/1.3 decryption, HTTP/2 and DNS parsing, and an interactive TUI"
license = "MIT"
repository = "https://github.com/georgeglarson/netgrep"
homepage = "https://github.com/georgeglarson/netgrep"
keywords = ["network", "pcap", "packet", "grep", "tls"]
categories = ["command-line-utilities", "network-programming"]
exclude = [".claude/", ".github/"]
[dependencies]
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Packet capture
pcap = "2.3"
# Protocol dissection
etherparse = "0.19"
# Pattern matching
regex = "1"
# Output
serde = { version = "1", features = ["derive"] }
serde_json = "1"
base64 = "0.22"
# Async / streams
crossbeam-channel = "0.5"
# Error handling
anyhow = "1"
# Terminal colors
colored = "3"
# TUI
ratatui = "0.30"
crossterm = "0.29"
# TLS parsing
tls-parser = "0.12"
# DNS parsing
simple-dns = "0.11"
# HTTP/2 HPACK header decompression
fluke-hpack = "0.3"
# Crypto (HKDF, AES-GCM, HMAC for TLS key derivation + decryption)
ring = "0.17"
# Zeroize sensitive key material on drop
zeroize = { version = "1", features = ["derive"] }
# Signal handling
ctrlc = "3"
[dev-dependencies]
# L13/L14: etherparse and simple-dns are already in [dependencies];
# dev-dependencies only need crates not in the main dependency list.