You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that you will need to depend on `kube`, along with `k8s-openapi` and `schemars` at **semver compatible versions** with the latest kube release (which can be seen in the [last release cargo.toml for kube](https://docs.rs/crate/kube/latest/source/Cargo.toml)). E.g. with `kube` 1:
117
117
118
118
```toml
119
-
kube = { version = "1" }
119
+
kube = { version = "1", features = ["derive"] }
120
120
schemars = { version = "0.8" }
121
-
k8s-openapi = { version = "0.25", features = ["latest"] }
121
+
k8s-openapi = { version = "0.25", features = ["latest", "schemars"] }
0 commit comments