inital working commit
This commit is contained in:
commit
28109122b2
18 changed files with 3321 additions and 0 deletions
39
Cargo.toml
Normal file
39
Cargo.toml
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
[package]
|
||||
name = "quick-start"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
# THE kubernetes api
|
||||
kube = { version = "2.0.1", features = ["runtime", "derive"] }
|
||||
k8s-openapi = { version = "0.26.0", features = ["latest", "schemars"] }
|
||||
|
||||
schemars = { version = "1" }
|
||||
|
||||
# Tokio
|
||||
tokio = { version = "1.14.0", features = ["full"] }
|
||||
tokio-stream = { version = "0.1.9", features = ["net"] }
|
||||
|
||||
# Error tracing?
|
||||
tracing = "0.1.36"
|
||||
tracing-subscriber = "0.3.17"
|
||||
|
||||
# Needed to parse data to yaml in kubectl
|
||||
serde = "1.0.130"
|
||||
serde_json = "1.0.68"
|
||||
serde_yaml = "0.9.19"
|
||||
serde-value = "0.7.0"
|
||||
|
||||
# .with_context()
|
||||
# Should be a error handling and context library
|
||||
anyhow = "1.0.71"
|
||||
# Open the $EDITOR
|
||||
edit = "0.1.3"
|
||||
# CLI arg parser
|
||||
clap = { version = "4.0", default-features = false, features = ["std", "cargo", "derive"] }
|
||||
|
||||
futures = { version = "0.3.17", default-features = false }
|
||||
either = "1.6.1"
|
||||
Loading…
Add table
Add a link
Reference in a new issue