[package]
edition = "2021"
rust-version = "1.81"
name = "sz-rust-operator"
version = "0.6.4"
authors = ["SZ-Rust Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "K8s Operator for sz-rust — CRD + Controller for automated sz-rust app deployment"
homepage = "https://github.com/ljclz/sz-rust"
readme = false
keywords = [
"k8s",
"operator",
"controller",
"sz-rust",
"crd",
]
categories = ["web-programming"]
license = "MIT"
repository = "https://github.com/ljclz/sz-rust"
[lib]
name = "sz_rust_operator"
path = "src/lib.rs"
[dependencies.futures]
version = "0.3"
[dependencies.json-patch]
version = "3"
[dependencies.k8s-openapi]
version = "0.23"
features = ["latest"]
[dependencies.kube]
version = "0.95"
features = [
"runtime",
"derive",
"client",
]
[dependencies.kube-derive]
version = "0.95"
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
features = ["preserve_order"]
[dependencies.serde_yaml]
version = "0.9.34"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1.40"
features = [
"full",
"macros",
"rt-multi-thread",
]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dev-dependencies.tokio]
version = "1.40"
features = [
"full",
"macros",
"rt-multi-thread",
"test-util",
]
[lints.rust]
unsafe_code = "forbid"