[package]
edition = "2024"
rust-version = "1.88"
name = "muxtop"
version = "0.2.2"
authors = ["Lucas Schimmel"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "muxtop"
description = "A modern, multiplexed system monitor for the terminal"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/lanexadev/muxtop"
[package.metadata.deb]
maintainer = "Lucas Schimmel"
copyright = "2026 Lucas Schimmel"
depends = "$auto"
section = "utils"
priority = "optional"
assets = [[
"target/release/muxtop",
"usr/bin/",
"755",
]]
extended-description = "A modern, multiplexed system monitor for the terminal. Features real-time CPU, memory, disk, and network monitoring with a TUI interface, process tree view, and fuzzy search."
[[bin]]
name = "muxtop"
path = "src/main.rs"
[[test]]
name = "cli_integration"
path = "tests/cli_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.dirs]
version = "6"
[dependencies.muxtop-core]
version = "0.2.0"
[dependencies.muxtop-proto]
version = "0.2.0"
[dependencies.muxtop-tui]
version = "0.2.0"
[dependencies.rustls-pki-types]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"signal",
"time",
"net",
"io-util",
]
[dependencies.tokio-rustls]
version = "0.26"
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-appender]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"env-filter",
]