-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
49 lines (35 loc) · 870 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "hat"
version = "0.7.1"
authors = ["Jens Reimann <jreimann@redhat.com>"]
edition = "2018"
[dependencies]
clap = { version = "2.33", features = ["suggestions", "wrap_help", "color"] }
log = "0.4"
simplelog = "0.5"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.8"
serde_json = "1.0"
failure_derive = "0.1"
failure = "0.1"
url = "2.1.1"
percent-encoding = "2.1"
dirs = "2"
tokio = { version = "0.2", features = [ "macros", "rt-threaded" ] }
reqwest = { version = "0.10.4", features = [ "gzip", "json" ] }
http = "0.2"
base64 = "0.10"
rand = "0.6"
sha2 = "0.8"
bcrypt = "0.5"
colored_json = "2.1"
ansi_term = "0.12"
futures = "0.3.4"
[dependencies.kube]
version = "0.28.1"
default-features = false
features = [ "rustls-tls" ]
[dev-dependencies.k8s-openapi]
version = "0.7.1"
default-features = false
features = ["v1_17"]