systeroid/systeroid-tui/Cargo.toml
dependabot[bot] 890a51a687
chore(deps): bump copypasta-ext from 0.3.9 to 0.4.1 (#65)
* chore(deps): bump copypasta-ext from 0.3.9 to 0.4.1

Bumps [copypasta-ext](https://gitlab.com/timvisee/copypasta-ext) from 0.3.9 to 0.4.1.
- [Release notes](https://gitlab.com/timvisee/copypasta-ext/tags)
- [Commits](https://gitlab.com/timvisee/copypasta-ext/compare/v0.3.9...v0.4.1)

---
updated-dependencies:
- dependency-name: copypasta-ext
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* fix(deps): use ClipboardProviderExt for clipboard context

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Orhun Parmaksız <orhunparmaksiz@gmail.com>
2023-01-28 18:54:02 +01:00

42 lines
1.2 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.3.0" # 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.63.0"
[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.38"
getopts = "0.2.21"
copypasta-ext = { version = "0.4.1", optional = true }
colorsys = "0.6.7"
[dependencies.systeroid-core]
version = "0.3.0" # managed by release.sh
path = "../systeroid-core"
[dependencies.tui]
version = "0.19.0"
default-features = false
features = ["termion"]
# 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"