Skip to content

Commit 9f63975

Browse files
committed
fix missing feature dependencies - for #343
Signed-off-by: clux <[email protected]>
1 parent dc52a07 commit 9f63975

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,9 @@ async fn main() -> Result<(), Box<dyn std::error::Error>> {
116116
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:
117117

118118
```toml
119-
kube = { version = "1" }
119+
kube = { version = "1", features = ["derive"] }
120120
schemars = { version = "0.8" }
121-
k8s-openapi = { version = "0.25", features = ["latest"] }
121+
k8s-openapi = { version = "0.25", features = ["latest", "schemars"] }
122122
```
123123

124124
## Autocomplete

0 commit comments

Comments
 (0)