From ae702fce4157d70b546482c459cd4b073d6c1a1f Mon Sep 17 00:00:00 2001 From: clux Date: Mon, 6 May 2024 14:41:56 +0100 Subject: [PATCH] bump k8s-openapi in readme (missed) Signed-off-by: clux --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b01576282..98417e2dc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Select a version of `kube` along with the generated [k8s-openapi](https://github ```toml [dependencies] kube = { version = "0.90.0", features = ["runtime", "derive"] } -k8s-openapi = { version = "0.21.1", features = ["latest"] } +k8s-openapi = { version = "0.22.0", features = ["latest"] } ``` See [features](https://kube.rs/features/) for a quick overview of default-enabled / opt-in functionality. @@ -156,7 +156,7 @@ By default [rustls](https://github.com/rustls/rustls) is used for TLS, but `open ```toml [dependencies] kube = { version = "0.90.0", default-features = false, features = ["client", "openssl-tls"] } -k8s-openapi = { version = "0.21.0", features = ["latest"] } +k8s-openapi = { version = "0.22.0", features = ["latest"] } ``` This will pull in `openssl` and `hyper-openssl`. If `default-features` is left enabled, you will pull in two TLS stacks, and the default will remain as `rustls`.