-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
41 lines (38 loc) · 1.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "glim-tui"
version = "0.2.0-dev"
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 <[email protected]>"]
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"] }