mirror of
https://codeberg.org/Toasterson/solstice-ci.git
synced 2026-04-10 13:20:41 +00:00
- Introduce a Terminal User Interface (TUI) to enable interactive browsing of jobs and logs. - Add a new `logs-client` crate to handle communication with the logs service, including job listing and log retrieval. - Extend `ciadm` to include new commands: `jobs`, `logs`, and `tui`, for interacting with the logs service. - Enhance the CLI to support repository filtering, job status retrieval, and detailed log viewing. - Refactor dependencies and organize logs-related functionality for modularity and reusability. Signed-off-by: Till Wegmueller <toasterson@gmail.com>
17 lines
497 B
TOML
17 lines
497 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"] }
|