-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (34 loc) · 1.18 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
[package]
name = "k8sfg"
version = "0.1.0"
authors = ["Bryant Biggs <[email protected]>"]
description = "A CLI to display feature gates across Kubernetes versions"
documentation = "https://github.com/clowdhaus/k8s-feature-gates"
homepage = "https://github.com/clowdhaus/k8s-feature-gates"
repository = "https://github.com/clowdhaus/k8s-feature-gates"
license = "Apache-2.0"
edition = "2021"
categories = [
"command-line-utilities",
"kubernetes",
]
[dependencies]
anstyle = "1.0"
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "color"] }
clap-verbosity-flag = "3.0"
regex-lite = "0.1"
reqwest = { version = "0.12", features = ["stream"] }
serde = { version = "1.0", features = ["derive"] }
tabled = { version = "0.17", default-features = false, features = ["std"] }
tempfile = "3.14"
tokio = { version = "1.41", default-features = false, features = ["fs", "macros", "rt-multi-thread"] }
tracing = { version = "0.1", default-features = false, features = ["log-always"] }
tracing-log = "0.2"
tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt", "std", "ansi"] }
[profile.release]
strip = true
lto = true
opt-level = "z"
codegen-units = 1
panic = "abort"