summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e4b084b6a92843b410d83a4463cb4e37d679b3c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[package]
name = "kmon"
version = "1.6.4"
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 = "2021"

[dependencies]
ratatui = { version = "0.24.0", default-features = false, features = [
  "termion",
] }
termion = "2.0.1"
bytesize = "1.3.0"
unicode-width = "0.1.11"
colorsys = "0.6.7"
enum-iterator = "1.4.1"
clap = "4.4.7"
copypasta-ext = "0.4.4"

[build-dependencies]
clap_mangen = "0.2.15"
clap_complete = "4.4.4"
clap = "4.4.7"

[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