-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (43 loc) · 1.49 KB
/
Cargo.toml
File metadata and controls
46 lines (43 loc) · 1.49 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
[package]
name = "ntap"
version = "0.10.0"
edition = "2024"
authors = ["shellrow <shellrow@foctal.com>"]
description = "Network traffic monitor/analyzer"
repository = "https://github.com/shellrow/ntap"
homepage = "https://github.com/shellrow/ntap"
documentation = "https://github.com/shellrow/ntap"
readme = "README.md"
keywords = ["network","security","cross-platform"]
categories = ["network-programming"]
license = "MIT"
[dependencies]
anyhow = { version = "1.0" }
bytes = "1.11"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["time", "chrono"] }
netdev = { version = "0.40", features = ["serde"] }
nex = { version = "0.25", features = ["serde"] }
tokio = { version = "1.49", features = ["rt-multi-thread", "macros", "time", "signal"] }
clap = { version = "4.5", features = ["cargo", "derive"] }
crossterm = { version = "0.29", features = ["event-stream"] }
ratatui = "0.30"
comfy-table = "7.2"
hickory-resolver = { version = "0.25" }
futures = {version = "0.3"}
netsock = { version = "0.6", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
ipnet = { version = "2.11" }
home = "0.5"
termtree = "1.0"
inquire = "0.9"
ndb-tcp-service = { version = "0.4", features = ["bundled"] }
ndb-udp-service = { version = "0.4", features = ["bundled"] }
[target.'cfg(windows)'.dependencies]
winreg = "0.55"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"