[package]
edition = "2024"
name = "lumination"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A very basic library to display network connections"
readme = "README.md"
keywords = ["forensics"]
license = "MIT"
repository = "https://github.com/puffyCid/lumination"
[lib]
name = "lumination"
path = "src/lib.rs"
[[example]]
name = "lumos"
path = "examples/lumos.rs"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tracing]
version = "0.1.44"
[target.'cfg(target_os = "linux")'.dependencies.glob]
version = "0.3.3"
[target.'cfg(target_os = "linux")'.dependencies.nom]
version = "8.0.0"
[target.'cfg(target_os = "macos")'.dependencies.libc]
version = "0.2.186"
[target.'cfg(target_os = "macos")'.dependencies.nom]
version = "8.0.0"
[target.'cfg(target_os = "windows")'.dependencies.windows]
version = "0.62.2"
features = [
"Win32_Foundation",
"Win32_NetworkManagement_IpHelper",
"Win32_System_Diagnostics_ToolHelp",
]
default-features = false