[package]
edition = "2024"
rust-version = "1.86"
name = "bandwidthmon"
version = "0.1.17"
authors = ["Hadi Cahyadi <cumulus13@gmail.com>"]
build = false
exclude = [
".github/*",
".gitignore",
"build.sh",
"build.bat",
"CHANGELOG.md",
"DEPLOYMENT_GUIDE.md",
"FIXED_APPLIED.md",
"FLICKER_FIX.md",
"PROJECT_STRUCTURE.md",
"PUBLISH.md",
"SMOOTH_RENDERING.md",
"bandwidthmon.exe",
"bandwidthmon2.exe",
"bandwidthmon.sublime-project",
"bandwidthmon.sublime-workspace",
"test/*",
"bandwidthmon3.exe",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Real-time network bandwidth monitor with beautiful ASCII charts"
homepage = "https://github.com/cumulus13/bandwidthmon"
documentation = "https://docs.rs/bandwidthmon"
readme = "README.md"
keywords = [
"network",
"bandwidth",
"monitor",
"terminal",
"cli",
]
categories = [
"command-line-utilities",
"network-programming",
]
license = "MIT"
repository = "https://github.com/cumulus13/bandwidthmon"
[[bin]]
name = "bandwidthmon"
path = "src/bandwidthmon.rs"
[[bin]]
name = "bandwidthmon2"
path = "src/bandwidthmon2.rs"
[[bin]]
name = "bandwidthmon3"
path = "src/bandwidthmon3.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = [
"derive",
"color",
"suggestions",
]
[dependencies.colored]
version = "3.0.0"
[dependencies.crossterm]
version = "0.28"
[dependencies.ctrlc]
version = "3.5"
[dependencies.rasciichart]
version = "0.2.16"
[dependencies.regex]
version = "1"
[dependencies.sysinfo]
version = "0.36"
[dependencies.term_size]
version = "0.3.2"
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.61.2"
features = [
"Win32_Foundation",
"Win32_System_Console",
]
[profile.dev]
opt-level = 0
debug = 2
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
strip = true
[profile.test]
opt-level = 0