-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathCargo.toml
36 lines (32 loc) · 871 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
[package]
name = "kubernetes"
version = "0.1.0"
edition = "2018"
description = "Kubernetes rust client"
authors = ["ynqa <[email protected]>"]
license-file = "LICENSE"
repository = "https://github.com/ynqa/kubernetes-rust"
readme = "README.md"
keywords = ["kubernetes"]
categories = ["web-programming::http-client"]
[dependencies]
base64 = "0.12.0"
chrono = "0.4.11"
dirs = "1.0.4"
failure = "0.1.2"
http = "0.2"
lazy_static = "1.3.0"
openssl = "0.10.12"
serde_json = "1.0.39"
serde_yaml = "0.8.5"
url = "1.7.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.reqwest]
version = "0.10.4"
features = ["json", "blocking", "native-tls"]
[dev-dependencies]
tempfile = "3.0.4"
tokio = { version = "0.2", features = ["macros"] }
k8s-openapi = { git = "https://github.com/Arnavion/k8s-openapi-codegen", tag = "v0.7.0", features = ["v1_15"] }