[package] name = "glim-tui" version = "0.1.0" edition = "2021" license = "MIT" description = "A TUI for monitoring GitLab CI/CD pipelines and projects" repository = "https://github.com/junkdog/glim" homepage = "https://github.com/junkdog/glim" documentation = "https://docs.rs/glim-tui" readme = "README.md" keywords = ["ratatui", "TUI", "monitoring", "gitlab"] categories = ["command-line-interface"] authors = ["Adrian Papari "] exclude = ["images/*.gif", ".*"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [[bin]] name = "glim" path = "src/main.rs" [dependencies] arboard = { version = "3.4.1", default-features = false, features = ["windows-sys", "wl-clipboard-rs"] } chrono = { version = "0.4.38", features = ["serde"] } colorsys = "0.6.7" confy = "0.6.1" tachyonfx = "0.7.0" crossterm = "0.28.1" derive_builder = "0.20.1" directories = "5.0.1" itertools = "0.13.0" once_cell = "1.20.2" open = "5.3.0" ratatui = "0.28.1" reqwest = "0.12.8" serde = { version = "1.0.210", features = ["derive"] } serde_json = "1.0.128" thiserror = "1.0.64" tokio = { version = "1.40.0", features = ["rt", "rt-multi-thread", "macros"] } tui-input = "0.10.1" clap = { version = "4.5.19", features = ["derive"] }