statui 0.1.2

A lightweight TUI dashboard for API health monitoring built with Rust and Ratatui.
[[bin]]
name = "statui"
path = "src/main.rs"

[dependencies.chrono]
version = "0.4.42"

[dependencies.color-eyre]
version = "0.6.5"

[dependencies.config]
version = "0.15.18"

[dependencies.directories]
version = "6.0.0"

[dependencies.ratatui]
features = ["crossterm"]
version = "0.29.0"

[dependencies.reqwest]
default-features = false
features = ["json", "rustls-tls"]
version = "0.12"

[dependencies.serde]
features = ["derive"]
version = "1.0.228"

[dependencies.tachyonfx]
version = "0.20.1"

[dependencies.tokio]
features = ["macros", "rt-multi-thread", "sync"]
version = "1.48.0"

[dependencies.toml]
version = "0.9.8"

[package]
authors = ["Mohamed Badry <m.badry.fl@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities", "development-tools"]
description = "A lightweight TUI dashboard for API health monitoring built with Rust and Ratatui."
edition = "2024"
exclude = ["assets/*", ".github/*", "tests/*", "demo.tape", "presets/*"]
keywords = ["tui", "monitoring", "api", "health-check", "dashboard"]
license = "MIT"
name = "statui"
readme = "README.md"
repository = "https://github.com/Mohamed-Badry/statui"
version = "0.1.2"

[package.metadata.binstall]
bin-dir = "{ bin }{ binary-ext }"
pkg-fmt = "tgz"
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.tar.gz"

[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
pkg-fmt = "zip"
pkg-url = "{ repo }/releases/download/v{ version }/{ name }-v{ version }-{ target }.zip"

[profile.dev]
debug = 2
opt-level = 0
panic = "unwind"

[profile.release]
codegen-units = 1
debug = 0
lto = true
opt-level = "z"
panic = "abort"
strip = true

[profile.test]
debug = 2
opt-level = 0