# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "k8s-maestro" version = "0.3.0" build = false autobins = false autoexamples = false autotests = false autobenches = false description = "A Kubernetes job orchestrator tool library" readme = "README.md" categories = [] license = "MIT OR Apache-2.0" [lib] name = "k8s_maestro" path = "src/lib.rs" [[example]] name = "apply_and_watch" path = "examples/apply_and_watch.rs" [[example]] name = "delete" path = "examples/delete.rs" [[example]] name = "use_image_pull_secret" path = "examples/use_image_pull_secret.rs" [[example]] name = "use_job_builder" path = "examples/use_job_builder.rs" [[example]] name = "use_volumes" path = "examples/use_volumes.rs" [dependencies.anyhow] version = "1.0.58" [dependencies.async-stream] version = "0.3.4" [dependencies.clap] version = "4.1.7" features = [ "derive", "color", "suggestions", "env", "unicode", ] [dependencies.dyn-clone] version = "1.0.17" [dependencies.env_logger] version = "0.11" [dependencies.futures] version = "0.3.31" [dependencies.k8s-openapi] version = "0.23" [dependencies.kube] version = "0.97.0" features = [ "runtime", "derive", "client", "rustls-tls", ] default-features = false [dependencies.log] version = "0.4.17" [dependencies.serde] version = "1.0.198" features = [ "serde_derive", "derive", ] [dev-dependencies.env_logger] version = "0.11" [dev-dependencies.k8s-openapi] version = "0.23" features = ["v1_31"] [dev-dependencies.serde_yml] version = "0.0.12" [dev-dependencies.tokio] version = "1" features = [ "macros", "rt", ] default-features = false [features] default = ["k8s_v1_26"] k8s-openapi = [] k8s_v1_26 = [ "k8s-openapi/v1_26", "k8s-openapi", "kube", ] k8s_v1_27 = [ "k8s-openapi/v1_27", "k8s-openapi", "kube", ] k8s_v1_28 = [ "k8s-openapi/v1_28", "k8s-openapi", "kube", ] k8s_v1_29 = [ "k8s-openapi/v1_29", "k8s-openapi", "kube", ] k8s_v1_30 = [ "k8s-openapi/v1_30", "k8s-openapi", "kube", ] k8s_v1_31 = [ "k8s-openapi/v1_31", "k8s-openapi", "kube", ] kube = []