solstice-ci/crates/ciadm/Cargo.toml
Till Wegmueller e76f4c0278
Add configuration support and enhance logs handling in TUI
- Introduce `Config` command to manage local `ciadm` settings, including `set-base-url` for persisting logs-service URLs.
- Improve TUI with log category selection and navigation using the Tab key.
- Refactor logs retrieval to support category-based display and enhance error handling.
- Add local configuration file utilities for storing and loading settings.
- Update dependencies to include the `kdl` crate for configuration management.

Signed-off-by: Till Wegmueller <toasterson@gmail.com>
2026-01-25 22:54:35 +01:00

18 lines
507 B
TOML

[package]
name = "ciadm"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
miette = { version = "7", features = ["fancy"] }
tracing = "0.1"
common = { path = "../common" }
logs-client = { path = "../logs-client" }
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
futures-util = "0.3"
chrono = "0.4"
uuid = { version = "1", features = ["v4"] }
kdl = "6"