-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (48 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
53 lines (48 loc) · 1.6 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
[package]
name = "nifa"
version = "0.5.0"
edition = "2024"
authors = ["shellrow <shellrow@foctal.com>"]
description = "Cross-platform network inspection tool"
repository = "https://github.com/shellrow/nifa"
homepage = "https://github.com/shellrow/nifa"
documentation = "https://github.com/shellrow/nifa"
readme = "README.md"
keywords = ["network"]
categories = ["network-programming"]
license = "MIT"
[dependencies]
anyhow = { version = "1" }
chrono = { version = "0.4" }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3", features = ["time", "chrono"] }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
serde_yaml = { version = "0.9" }
mac-addr = { version = "0.3.0" }
netdev = { version = "0.40", features = ["serde"] }
netroute = { version = "0.4", features = ["serde"] }
netsock = { version = "0.6", features = ["serde"] }
clap = { version = "4.5", features = ["derive", "cargo"] }
termtree = { version = "0.5" }
hostname = { version = "0.4" }
os_info = { version = "3.12" }
ndb-oui = { version = "0.4", features = ["bundled"] }
ratatui = "0.25"
crossterm = "0.27"
humansize = "2.1"
comfy-table = "7.2"
#home = { version = "0.5" }
[target.'cfg(unix)'.dependencies]
libc = "0.2"
[target.'cfg(target_os = "linux")'.dependencies]
netlink-packet-core = "0.8"
netlink-packet-route = "0.25"
netlink-sys = "0.8"
rtnetlink = "0.18"
[target.'cfg(target_os = "windows")'.dependencies]
windows-sys = { version = "0.59", features = ["Win32_System_SystemInformation", "Wdk_System_SystemServices"] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"