systeroid/systeroid-tui/Cargo.toml

31 lines
722 B
TOML
Raw Normal View History

2021-12-25 17:49:22 +00:00
[package]
name = "systeroid-tui"
version = "0.1.0"
2022-02-27 21:24:45 +00:00
description = "A terminal user interface for managing kernel parameters"
2021-12-25 17:49:22 +00:00
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
repository = "https://github.com/orhun/systeroid"
license = "MIT OR Apache-2.0"
2021-12-25 17:49:22 +00:00
edition = "2021"
[features]
# clipboard support is enabled as default
default = ["clipboard"]
clipboard = ["copypasta-ext"]
2021-12-25 17:49:22 +00:00
[dependencies]
termion = "1.5.6"
unicode-width = "0.1.9"
thiserror = "1.0.30"
getopts = "0.2.21"
copypasta-ext = { version = "0.3.7", optional = true }
colorsys = "0.6.5"
[dependencies.systeroid-core]
version = "0.1.0"
path = "../systeroid-core"
[dependencies.tui]
2022-01-24 15:23:36 +00:00
version = "0.17.0"
default-features = false
features = ["termion"]