systeroid/systeroid-tui/Cargo.toml
dependabot[bot] ccee53016f
chore(deps): bump thiserror from 1.0.47 to 1.0.48 (#123)
Bumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.47 to 1.0.48.
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.47...1.0.48)

---
updated-dependencies:
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-04 01:56:28 +00:00

48 lines
1.3 KiB
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 = "systeroid-tui"
version = "0.4.2" # managed by release.sh
description = "A terminal user interface for managing kernel parameters"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT OR Apache-2.0"
readme = "../README.md"
homepage = "https://github.com/orhun/systeroid"
repository = "https://github.com/orhun/systeroid"
keywords = ["linux", "kernel", "parameter", "sysctl", "tui"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.68.2"
[features]
# clipboard support is enabled as default
default = ["clipboard"]
clipboard = ["copypasta-ext"]
[dependencies]
termion = "2.0.1"
unicode-width = "0.1.10"
thiserror = "1.0.48"
getopts = "0.2.21"
copypasta-ext = { version = "0.4.4", optional = true }
log.workspace = true
[dependencies.systeroid-core]
version = "0.4.2" # managed by release.sh
path = "../systeroid-core"
[dependencies.tui]
package = "ratatui"
version = "0.21.0"
default-features = false
features = ["termion"]
[dependencies.tui-logger]
version = "0.9.5"
default-features = false
features = ["ratatui-support"]
# metadata for cargo-binstall to get the right artifacts
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/v{ version }/systeroid-{ version }-{ target }.{ archive-format }"
bin-dir = "systeroid-{ version }/{ bin }{ binary-ext }"
pkg-fmt = "tgz"