From 0f81996a757e2831c26547fe30dac574e43b682d Mon Sep 17 00:00:00 2001 From: clux Date: Tue, 21 Nov 2023 11:00:34 +0000 Subject: [PATCH] Bump MSRV to 1.65 needed for #1345 Signed-off-by: clux --- .devcontainer/Dockerfile | 2 +- README.md | 2 +- kube-client/Cargo.toml | 2 +- kube-core/Cargo.toml | 2 +- kube-derive/Cargo.toml | 2 +- kube-runtime/Cargo.toml | 2 +- kube/Cargo.toml | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4f7d90f4a..2b11066e2 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -1,4 +1,4 @@ -FROM docker.io/rust:1.64.0-bullseye +FROM docker.io/rust:1.65.0-bullseye ENV DEBIAN_FRONTEND=noninteractive RUN apt update && apt upgrade -y diff --git a/README.md b/README.md index 77ce38fd9..831ac2f98 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # kube-rs [![Crates.io](https://img.shields.io/crates/v/kube.svg)](https://crates.io/crates/kube) -[![Rust 1.64](https://img.shields.io/badge/MSRV-1.64-dea584.svg)](https://github.com/rust-lang/rust/releases/tag/1.64.0) +[![Rust 1.65](https://img.shields.io/badge/MSRV-1.65-dea584.svg)](https://github.com/rust-lang/rust/releases/tag/1.65.0) [![Tested against Kubernetes v1_23 and above](https://img.shields.io/badge/MK8SV-v1_23-326ce5.svg)](https://kube.rs/kubernetes-version) [![Best Practices](https://bestpractices.coreinfrastructure.org/projects/5413/badge)](https://bestpractices.coreinfrastructure.org/projects/5413) [![Discord chat](https://img.shields.io/discord/500028886025895936.svg?logo=discord&style=plastic)](https://discord.gg/tokio) diff --git a/kube-client/Cargo.toml b/kube-client/Cargo.toml index 101f53bcb..c52b8fd80 100644 --- a/kube-client/Cargo.toml +++ b/kube-client/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/kube-rs/kube" readme = "../README.md" keywords = ["kubernetes", "client",] categories = ["web-programming::http-client", "configuration", "network-programming", "api-bindings"] -rust-version = "1.64.0" +rust-version = "1.65.0" edition = "2021" [features] diff --git a/kube-core/Cargo.toml b/kube-core/Cargo.toml index b44f6c730..4c45472d2 100644 --- a/kube-core/Cargo.toml +++ b/kube-core/Cargo.toml @@ -7,7 +7,7 @@ authors = [ "kazk ", ] edition = "2021" -rust-version = "1.64.0" +rust-version = "1.65.0" license = "Apache-2.0" keywords = ["kubernetes", "apimachinery"] categories = ["api-bindings", "encoding", "parser-implementations"] diff --git a/kube-derive/Cargo.toml b/kube-derive/Cargo.toml index 1e6211a95..276626e9f 100644 --- a/kube-derive/Cargo.toml +++ b/kube-derive/Cargo.toml @@ -7,7 +7,7 @@ authors = [ "kazk ", ] edition = "2021" -rust-version = "1.64.0" +rust-version = "1.65.0" license = "Apache-2.0" repository = "https://github.com/kube-rs/kube" readme = "../README.md" diff --git a/kube-runtime/Cargo.toml b/kube-runtime/Cargo.toml index 693d9fc0d..0beee861c 100644 --- a/kube-runtime/Cargo.toml +++ b/kube-runtime/Cargo.toml @@ -11,7 +11,7 @@ repository = "https://github.com/kube-rs/kube" readme = "../README.md" keywords = ["kubernetes", "runtime", "reflector", "watcher", "controller"] categories = ["web-programming::http-client", "caching", "network-programming"] -rust-version = "1.64.0" +rust-version = "1.65.0" edition = "2021" [features] diff --git a/kube/Cargo.toml b/kube/Cargo.toml index cb8525012..c8448db96 100644 --- a/kube/Cargo.toml +++ b/kube/Cargo.toml @@ -12,7 +12,7 @@ repository = "https://github.com/kube-rs/kube" readme = "../README.md" keywords = ["kubernetes", "client", "runtime", "cncf"] categories = ["network-programming", "caching", "api-bindings", "configuration", "encoding"] -rust-version = "1.64.0" +rust-version = "1.65.0" edition = "2021" [features]