forked from kube-rs/kopium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (49 loc) · 1.22 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
[package]
name = "kopium"
description = "kubernetes openapi unmangler"
version = "0.18.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", "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.37.0", features = ["full"] }
anyhow = "1.0.82"
log = "0.4.21"
env_logger = "0.11.3"
serde_json = "1.0.116"
clap = { version = "4.5", features = ["cargo", "derive"] }
clap_complete = "4.5"
quote = "1.0.36"
serde = { version = "1.0.198", features = ["derive"] }
serde_yaml = "0.9.34"
heck = "0.5.0"
syn = "2.0.60"
libc = "0.2.153"
[dependencies.k8s-openapi]
version = "0.21.1"
features = ["latest"]
[dependencies.kube]
version = "0.90.0"
features = ["derive"]
[dev-dependencies]
schemars = "0.8.16"
typed-builder = "0.18.2"
[dev-dependencies.k8s-openapi]
version = "0.21.1"
features = ["latest", "schemars"]