kube-core 0.76.0

Kube shared types, traits and client-less behavior
Documentation
[package]
name = "kube-core"
description = "Kube shared types, traits and client-less behavior"
version = "0.76.0"
authors = [
  "clux <sszynrae@gmail.com>",
  "kazk <kazk.dev@gmail.com>",
]
edition = "2021"
rust-version = "1.60.0"
license = "Apache-2.0"
repository = "https://github.com/kube-rs/kube"
readme = "../README.md"

[package.metadata.docs.rs]
features = ["ws", "admission", "jsonpatch", "k8s-openapi/v1_25"]
rustdoc-args = ["--cfg", "docsrs"]

[features]
ws = []
admission = ["json-patch"]
jsonpatch = ["json-patch"]
schema = ["schemars"]

[dependencies]
serde = { version = "1.0.130", features = ["derive"] }
serde_json = "1.0.68"
thiserror = "1.0.29"
form_urlencoded = "1.0.1"
http = "0.2.5"
json-patch = { version = "0.2.6", optional = true }
once_cell = "1.8.0"
chrono = { version = "0.4.19", default-features = false, features = ["clock"] }
schemars = { version = "0.8.6", optional = true }

[dependencies.k8s-openapi]
version = "0.16.0"
default-features = false
features = []

[dev-dependencies.k8s-openapi]
version = "0.16.0"
default-features = false
features = ["v1_25"]

[dev-dependencies]
assert-json-diff = "2.0.1"
kube = { path = "../kube", version = "<1.0.0, >=0.53.0" }
serde_yaml = "0.8.23"