forked from kube-rs/kopium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 904 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
[package]
name = "kopium"
description = "kubernetes openapi unmangler"
version = "0.8.0"
edition = "2021"
authors = [
"clux <[email protected]>",
]
license = "Apache-2.0"
readme = "./README.md"
repository = "https://github.com/kube-rs/kopium"
keywords = ["kubernetes", "openapi"]
categories = ["command-line-utilities"]
[[bin]]
doc = false
name = "kopium"
path = "src/main.rs"
[lib]
name = "kopium"
path = "src/lib.rs"
[dependencies]
k8s-openapi = { version = "0.14.0", features = ["v1_22"] }
tokio = { version = "1.14.0", features = ["full"] }
anyhow = "1.0.48"
log = "0.4.14"
env_logger = "0.9.0"
serde_json = "1.0.72"
clap = "2.33"
quote = "1.0.10"
serde = { version = "1.0.130", features = ["derive"] }
structopt = "0.3"
[dependencies.kube]
version = "0.69.0"
#git = "https://github.com/kube-rs/kube-rs.git"
#branch = "master"
features = ["derive"]
[dev-dependencies]
serde_yaml = "0.8.23"