From 45b497b5607947602649552c85a67e72e327a64f Mon Sep 17 00:00:00 2001 From: Kate Goldenring Date: Wed, 15 Nov 2023 16:00:15 -0800 Subject: [PATCH] chore(*): bump to rust toolchain 1.73 Signed-off-by: Kate Goldenring --- .github/workflows/check-rust.yml | 2 +- .github/workflows/run-tarpaulin.yml | 2 +- README.md | 2 +- agent/Cargo.toml | 2 +- build/setup.sh | 4 ++-- controller/Cargo.toml | 2 +- .../debug-echo-discovery-handler/Cargo.toml | 2 +- discovery-handler-modules/onvif-discovery-handler/Cargo.toml | 2 +- discovery-handler-modules/opcua-discovery-handler/Cargo.toml | 2 +- discovery-handler-modules/udev-discovery-handler/Cargo.toml | 2 +- discovery-handlers/debug-echo/Cargo.toml | 2 +- discovery-handlers/onvif/Cargo.toml | 2 +- discovery-handlers/opcua/Cargo.toml | 2 +- discovery-handlers/udev/Cargo.toml | 2 +- discovery-utils/Cargo.toml | 2 +- samples/brokers/udev-video-broker/Cargo.toml | 2 +- shared/Cargo.toml | 2 +- webhooks/validating/configuration/Cargo.toml | 2 +- 18 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/check-rust.yml b/.github/workflows/check-rust.yml index 87b58da87..0a74bc7c9 100644 --- a/.github/workflows/check-rust.yml +++ b/.github/workflows/check-rust.yml @@ -33,7 +33,7 @@ jobs: - name: Rust install uses: dtolnay/rust-toolchain@master with: - toolchain: 1.68.1 + toolchain: 1.73.0 components: clippy, rustfmt - name: Install Linux requirements run: | diff --git a/.github/workflows/run-tarpaulin.yml b/.github/workflows/run-tarpaulin.yml index 0ff6f70de..66f433bce 100644 --- a/.github/workflows/run-tarpaulin.yml +++ b/.github/workflows/run-tarpaulin.yml @@ -16,7 +16,7 @@ on: env: CARGO_TERM_COLOR: always - CARGO_VERSION: 1.68.1 + CARGO_VERSION: 1.73.0 jobs: build: diff --git a/README.md b/README.md index 6c0946875..80990c109 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Akri Logo

[![Slack channel #akri](https://img.shields.io/badge/slack-akri-blueviolet.svg?logo=slack)](https://kubernetes.slack.com/messages/akri) -[![Rust Version](https://img.shields.io/badge/rustc-1.68.1-blue.svg)](https://blog.rust-lang.org/2023/03/31/Rust-1.68.1.html) +[![Rust Version](https://img.shields.io/badge/rustc-1.73.0-blue.svg)](https://blog.rust-lang.org/2023/03/31/Rust-1.73.0.html) [![Kubernetes Version](https://img.shields.io/badge/kubernetes-≥%201.16-blue.svg)](https://kubernetes.io/) [![codecov](https://codecov.io/gh/project-akri/akri/branch/main/graph/badge.svg?token=V468HO7CDE)](https://codecov.io/gh/project-akri/akri) [![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5339/badge)](https://bestpractices.coreinfrastructure.org/projects/5339) diff --git a/agent/Cargo.toml b/agent/Cargo.toml index ecc26375d..2abf07849 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring ", ""] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/build/setup.sh b/build/setup.sh index 1e73d6406..9c16b080a 100755 --- a/build/setup.sh +++ b/build/setup.sh @@ -23,10 +23,10 @@ then if [ -x "$(command -v sudo)" ]; then echo "Install rustup" - sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1 + sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0 else echo "Install rustup" - curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1 + curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0 fi else echo "Found rustup" diff --git a/controller/Cargo.toml b/controller/Cargo.toml index 858fda08e..24dec979a 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["", ""] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml index 4a36d6a38..6b6bd7d77 100644 --- a/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml index 42d381202..ded51a778 100644 --- a/discovery-handler-modules/onvif-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/onvif-discovery-handler/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml index cc9812939..296fecc06 100644 --- a/discovery-handler-modules/opcua-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/opcua-discovery-handler/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handler-modules/udev-discovery-handler/Cargo.toml b/discovery-handler-modules/udev-discovery-handler/Cargo.toml index 022bfc0a5..a28d5cc53 100644 --- a/discovery-handler-modules/udev-discovery-handler/Cargo.toml +++ b/discovery-handler-modules/udev-discovery-handler/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handlers/debug-echo/Cargo.toml b/discovery-handlers/debug-echo/Cargo.toml index 59271ba1a..4a2154297 100644 --- a/discovery-handlers/debug-echo/Cargo.toml +++ b/discovery-handlers/debug-echo/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handlers/onvif/Cargo.toml b/discovery-handlers/onvif/Cargo.toml index 19553cb5c..9b5caa534 100644 --- a/discovery-handlers/onvif/Cargo.toml +++ b/discovery-handlers/onvif/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handlers/opcua/Cargo.toml b/discovery-handlers/opcua/Cargo.toml index ec7a10cff..d7cab9cdc 100644 --- a/discovery-handlers/opcua/Cargo.toml +++ b/discovery-handlers/opcua/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-handlers/udev/Cargo.toml b/discovery-handlers/udev/Cargo.toml index 821fbfeb1..8e33015a3 100644 --- a/discovery-handlers/udev/Cargo.toml +++ b/discovery-handlers/udev/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/discovery-utils/Cargo.toml b/discovery-utils/Cargo.toml index ead72a75a..c552023e2 100644 --- a/discovery-utils/Cargo.toml +++ b/discovery-utils/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/samples/brokers/udev-video-broker/Cargo.toml b/samples/brokers/udev-video-broker/Cargo.toml index 99cbe8865..24eca2f59 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["Kate Goldenring ", ""] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/shared/Cargo.toml b/shared/Cargo.toml index 43e12bdca..683004819 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = [""] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/webhooks/validating/configuration/Cargo.toml b/webhooks/validating/configuration/Cargo.toml index 067e23d51..a0759663c 100644 --- a/webhooks/validating/configuration/Cargo.toml +++ b/webhooks/validating/configuration/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.16" license = "Apache-2.0" authors = ["DazWilkin "] edition = "2018" -rust-version = "1.68.1" +rust-version = "1.73.0" [dependencies] actix-web = { version = "3.3.2", features = ["openssl"] }