-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Cargo.toml
58 lines (50 loc) · 1.24 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 = "kopium"
description = "kubernetes openapi unmangler"
version = "0.21.1"
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", "parsing"]
[package.metadata.binstall]
pkg-url = "{ repo }/releases/download/{ version }/kopium-{ target }{ archive-suffix }"
bin-dir = "kopium-{ target }/{ bin }{ format }"
[[bin]]
doc = false
name = "kopium"
path = "src/main.rs"
[lib]
name = "kopium"
path = "src/lib.rs"
[dependencies]
tokio = { version = "1.41.0", features = ["full"] }
anyhow = "1.0.92"
log = "0.4.22"
env_logger = "0.11.5"
serde_json = "1.0.132"
clap = { version = "4.5", features = ["cargo", "derive"] }
clap_complete = "4.5"
quote = "1.0.37"
serde = { version = "1.0.214", features = ["derive"] }
serde_yaml = "0.9.34"
heck = "0.5.0"
syn = "2.0.87"
libc = "0.2.161"
regex = "1.11.1"
[dependencies.k8s-openapi]
version = "0.23.0"
features = ["latest"]
[dependencies.kube]
version = "0.96.0"
features = ["derive"]
[dev-dependencies]
schemars = "0.8.21"
typed-builder = "0.20.0"
[dev-dependencies.k8s-openapi]
version = "0.23.0"
features = ["latest", "schemars"]