-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (29 loc) · 869 Bytes
/
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
[package]
name = "ktx"
version = "0.1.0"
edition = "2021"
[dependencies]
tui = { package = "ratatui", version = "0.21.0", features = ["all-widgets"]}
clap = "4.2.7"
crossterm = { version = "0.26.1", features = ["event-stream"] }
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
shellexpand = "3.1.0"
kube = { version = "0.82", features = ["config"] }
tokio = { version = "1.28", features = ["full"] }
k8s-openapi = { version = "0.18", features = ["v1_26"] }
log = "0.4.19"
env_logger = "0.10.0"
async-trait = "0.1.68"
futures = "0.3.28"
chrono = "0.4"
serde_json = "1.0"
[package.metadata.deb]
maintainer = "Maksim Leanovich <[email protected]>"
license_file = ["LICENSE", "3"]
depends = "$auto"
extended_description = """
Ktx is a Kubernetes config management utility with a terminal user interface.
"""
[package.metadata.rpm]
license = "MIT"