kuberator 0.5.0

A Kubernetes operator framework in Rust
Documentation
# 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 = "kuberator"
version = "0.5.0"
authors = ["Mathias Oertel <mathias.oertel@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Kubernetes operator framework in Rust"
documentation = "https://docs.rs/kuberator"
readme = "README.md"
keywords = [
    "operator",
    "k8s",
    "kubernetes",
]
license = "MIT"
repository = "https://github.com/maoertel/kuberator"

[lib]
name = "kuberator"
path = "src/lib.rs"

[[example]]
name = "basic_operator"
path = "examples/basic_operator.rs"

[[example]]
name = "error_handling"
path = "examples/error_handling.rs"

[[example]]
name = "with_status"
path = "examples/with_status.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.futures]
version = "0.3"
default-features = false

[dependencies.k8s-openapi]
version = "0.28"
features = ["latest"]

[dependencies.kube]
version = "4.0"
features = [
    "runtime",
    "derive",
]

[dependencies.schemars]
version = "1.1"

[dependencies.serde]
version = "1.0"
features = [
    "derive",
    "rc",
]

[dependencies.strum]
version = "0.28"
features = ["derive"]

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.0"
features = ["sync"]

[dependencies.tracing]
version = "0.1"

[dev-dependencies.http]
version = "1.0"

[dev-dependencies.hyper]
version = "1.0"

[dev-dependencies.serde_json]
version = "1.0"

[dev-dependencies.tokio]
version = "1.0"
features = ["full"]

[dev-dependencies.tower-test]
version = "0.4"

[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]