1
0
mirror of https://github.com/orhun/kmon synced 2024-06-29 06:24:54 +00:00
kmon/Cargo.toml
dependabot[bot] a475daf72e
chore: Bump termion from 3.0.0 to 4.0.0 (#149)
Bumps termion from 3.0.0 to 4.0.0.

---
updated-dependencies:
- dependency-name: termion
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-05-26 21:02:21 +03:00

52 lines
1.1 KiB
TOML
Raw Permalink 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.6.5"
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.26.3", default-features = false, features = [
"termion",
] }
termion = "4.0.0"
bytesize = "1.3.0"
unicode-width = "0.1.11"
colorsys = "0.6.7"
enum-iterator = "2.0.0"
clap = "4.5.4"
copypasta-ext = "0.4.4"
[build-dependencies]
clap_mangen = "0.2.20"
clap_complete = "4.5.2"
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