1
0
mirror of https://github.com/orhun/kmon synced 2024-07-08 20:06:03 +00:00
kmon/Cargo.toml
2021-07-16 19:10:20 +03:00

46 lines
980 B
TOML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

[package]
name = "kmon"
version = "1.5.3"
description = "Linux kernel manager and activity monitor"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "GPL-3.0"
readme = "README.md"
documentation = "https://github.com/orhun/kmon/blob/master/README.md"
homepage = "https://kmon.cli.rs"
repository = "https://github.com/orhun/kmon"
keywords = ["linux", "kernel", "module", "activity", "monitor"]
categories = ["command-line-utilities", "os"]
include = ["src/**/*", "Cargo.*", "LICENSE", "README.md", "CHANGELOG.md"]
edition = "2018"
[dependencies]
clap = "2.33.3"
tui = "0.15.0"
termion = "1.5.6"
bytesize = "1.0.1"
unicode-width = "0.1.8"
enum-unitary = "0.4.2"
enum-iterator = "0.6.0"
clipboard = "0.5.0"
colorsys = "0.6.3"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "abort"
lto = true
codegen-units = 1
[profile.bench]
opt-level = 3
debug = false