[package]
edition = "2021"
name = "ktop"
version = "0.1.7"
build = false
include = [
"src/**",
"Cargo.toml",
"Cargo.lock",
"README.md",
"LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast Rust top/htop replacement with a Scrin TUI and Aisling effects."
homepage = "https://github.com/Tknott95/KnottTop"
documentation = "https://docs.rs/ktop"
readme = "README.md"
keywords = [
"top",
"htop",
"tui",
"process",
"monitor",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/Tknott95/KnottTop"
[lib]
name = "ktop"
path = "src/lib.rs"
[[bin]]
name = "ktop"
path = "src/main.rs"
[dependencies.crossterm]
version = "0.27"
[dependencies.libc]
version = "0.2"
[profile.release]
lto = "thin"
codegen-units = 1
strip = true