-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
71 lines (60 loc) · 2.18 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[package]
name = "kubetui"
version = "1.6.0"
authors = ["kosay <[email protected]>"]
edition = "2021"
license = "MIT"
description = "An intuitive Terminal User Interface (TUI) tool for real-time monitoring and exploration of Kubernetes resources."
documentation = "https://github.com/sarub0b0/kubetui"
repository = "https://github.com/sarub0b0/kubetui"
keywords = ["kubernetes", "tui", "terminal", "monitor"]
exclude = ["/.github", "/test", "/script", "/screenshots", "/assets", ".gitignore", "Makefile", "renovate.json", "cspell.json"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossbeam = "0.8.4"
clap = { version = "4.5.4", features = ["wrap_help", "derive", "cargo"] }
nom = { version = "7.1.3", features = ["alloc"] }
# clipboard
arboard = { version = "3.4.1", default-features = false, features = ["wayland-data-control"] }
base64 = "0.22.1"
# tui
async-trait = "0.1.80"
chrono = "0.4.38"
enum_dispatch = "0.3.13"
fuzzy-matcher = "0.3.7"
ratatui = { version = "0.29.0", features = ["serde"] }
rayon = "1.10"
unicode-segmentation = "1.11"
unicode-width = "0.2.0"
# log
log = "0.4.21"
log4rs = { version = "1.3.0", default-features = false, features = ["file_appender", "json_encoder"] }
bytes = "1.6.0"
futures = "0.3.30"
http = "1.1.0"
k8s-openapi = { version = "0.24.0", default-features = false, features = ["latest"] }
kube = { version = "0.98.0", features = ["derive"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
serde_yaml = "0.9.34"
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread"] }
thiserror = "2.0.0"
anyhow = "1.0.82"
ctrlc = { version = "3.4.3", features = ["termination"] }
once_cell = "1.19.0"
regex = "1.10.4"
regex-syntax = { version = "0.8.3", default-features = false }
indoc = "2.0.5"
flate2 = "1.0.30"
strum = { version = "0.26.2", features = ["derive"] }
paste = "1.0.14"
figment = { version = "0.10.19", features = ["yaml", "env"] }
bitflags = "2.6.0"
dirs = "5.0.1"
[dev-dependencies]
pretty_assertions = "1.4.0"
indoc = "2.0.5"
mockall = "0.13.0"
mockall_double = "0.3.1"
tokio = { version = "1.37.0", features = ["rt", "rt-multi-thread", "macros"] }
rstest = "0.24.0"