[package]
edition = "2021"
rust-version = "1.75"
name = "gregg"
version = "1.0.7"
authors = ["David Bowman <dbowman91@proton.me>"]
build = false
include = [
"src/**/*.rs",
"Cargo.toml",
"README.md",
"LICENSE",
"config.example.toml",
"tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Compact keyboard-first terminal monitor that polls greggd endpoints and renders each system in a compact five-row base block."
homepage = "https://github.com/eggstack/gregg"
readme = "README.md"
keywords = [
"tui",
"monitoring",
"metrics",
"ratatui",
"cli",
]
categories = [
"command-line-utilities",
"visualization",
]
license = "MIT"
repository = "https://github.com/eggstack/gregg"
[features]
default = []
test-helper = []
[[bin]]
name = "gregg"
path = "src/main.rs"
[[bin]]
name = "lock_helper"
path = "src/bin/lock_helper.rs"
required-features = ["test-helper"]
[dependencies.clap]
version = ">=4.0, <4.5"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
features = ["event-stream"]
default-features = false
[dependencies.futures-util]
version = "0.3"
default-features = false
[dependencies.gregg-protocol]
version = "1.0.7"
[dependencies.hyper-rustls]
version = ">=0.27, <0.27.8"
default-features = false
[dependencies.idna]
version = ">=1.0.3, <1.1"
[dependencies.idna_adapter]
version = ">=1.1, <1.2"
[dependencies.indexmap]
version = ">=2.0, <2.12"
[dependencies.instability]
version = ">=0.3, <0.3.11"
[dependencies.quinn-proto]
version = ">=0.11.14, <0.11.15"
default-features = false
[dependencies.ratatui]
version = "0.29"
features = ["crossterm"]
default-features = false
[dependencies.reqwest]
version = ">=0.12.28, <0.12.29"
features = [
"rustls-tls",
"stream",
]
default-features = false
[dependencies.rustc-hash]
version = ">=2.0, <2.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1.0"
default-features = false
[dependencies.thiserror-compat]
version = ">=2.0.3, <2.0.13"
package = "thiserror"
[dependencies.tokio]
version = "1"
features = [
"rt",
"macros",
"time",
"sync",
"signal",
"net",
]
[dependencies.tokio-util]
version = "0.7"
[dependencies.toml]
version = "0.8"
[dependencies.unicode-segmentation]
version = ">=1.10, <1.13"
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = ">=2.5.4, <2.5.5"
[dependencies.uuid]
version = ">=1.11, <1.21"
features = ["v4"]
[dependencies.zeroize]
version = ">=1.7, <1.9"
[dev-dependencies.gregg-protocol]
version = "1.0.7"
features = ["test_support"]
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]
[target."cfg(unix)".dependencies.libc]
version = "0.2"
[target."cfg(windows)".dependencies.windows-sys]
version = "0.59"
features = [
"Win32_Storage_FileSystem",
"Win32_System_IO",
]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
result_large_err = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"