[package]
edition = "2021"
name = "ntop"
version = "0.1.1"
authors = ["Shixiang Wang <wangshx@csu.edu.cn>"]
build = false
exclude = [
".github/*",
"target/*",
"*.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A real-time system resource monitor for Linux, focused on network and disk I/O"
homepage = "https://github.com/WangLabCSU/ntop"
documentation = "https://docs.rs/ntop"
readme = "README.md"
keywords = [
"system-monitor",
"network",
"disk-io",
"htop",
"tui",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/WangLabCSU/ntop"
[lib]
name = "ntop"
path = "src/lib.rs"
[[bin]]
name = "ntop"
path = "src/main.rs"
[[bin]]
name = "test_disk"
path = "src/bin/test_disk.rs"
[dependencies.anyhow]
version = "1"
[dependencies.crossterm]
version = "0.28"
[dependencies.libc]
version = "0.2"
[dependencies.ratatui]
version = "0.29"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.users]
version = "0.11"
[dev-dependencies]
[profile.release]
opt-level = 3
lto = true
strip = true