forked from kdash-rs/kdash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
58 lines (51 loc) · 1.69 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
[package]
name = "kdash"
version = "0.3.7"
authors = ["Deepu K Sasidharan <[email protected]>"]
description = """
A fast and simple dashboard for Kubernetes
"""
documentation = "https://github.com/kdash-rs/kdash"
keywords = ["kdash", "kubernetes", "dashboard"]
repository = "https://github.com/kdash-rs/kdash"
homepage = "https://github.com/kdash-rs/kdash"
readme = "README.md"
license = "MIT"
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[badges]
[dependencies]
crossterm = "0.26.1"
tui = { version = "0.19", default-features = false, features = ['crossterm'] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
clap = { version = "4.0.30", features = ["help", "usage", "error-context", "derive"] }
tokio = { version = "1.21", features = ["macros", "rt-multi-thread"] }
tokio-stream = { version = "0.1.11", features = ["time"] }
duct = "0.13"
anyhow = "1.0"
backtrace = "0.3"
textwrap = "0.16.0"
regex = "1"
kube = "0.80.0"
k8s-openapi = { version = "0.17.0", default-features = false, features = ["v1_22"] }
base64 ="0.21.2"
openssl = { version = "0.10", features = ["vendored"] }
human-panic = "1.0"
kubectl-view-allocations = { version="0.16.3", default-features = false }
# XCB is a PITA to compile for ARM so disabling the copy feature on ARM for now
[target.'cfg(target_arch = "x86_64")'.dependencies]
clipboard = "0.5"
[dev-dependencies.cargo-husky]
version = "1"
default-features = false
features = ["user-hooks"]
[[bin]]
bench = false
path = "src/main.rs"
name = "kdash"
[profile.release]
lto = true
codegen-units = 1