mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
- 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>
18 lines
507 B
TOML
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"
|