From 062b7f6c323341610114f9199c61548824069e83 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 c3984a2fe..fbc3b077e 100644 --- a/agent/Cargo.toml +++ b/agent/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 c969b2df7..2ddb72b87 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 e94096c2d..bcde98fcf 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.18" 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 769243373..e03d9ca78 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.18" 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 ad68f4b06..826cfd285 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.18" 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 5ca2abcee..420298851 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.18" 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 f90d06825..b74df675e 100644 --- a/discovery-handlers/debug-echo/Cargo.toml +++ b/discovery-handlers/debug-echo/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 acc5718e1..0e4eabcea 100644 --- a/discovery-handlers/onvif/Cargo.toml +++ b/discovery-handlers/onvif/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 4fc941886..fb4eb00dc 100644 --- a/discovery-handlers/opcua/Cargo.toml +++ b/discovery-handlers/opcua/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 186e915e8..f1620597f 100644 --- a/discovery-handlers/udev/Cargo.toml +++ b/discovery-handlers/udev/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 d64a9ccb9..2f6b11154 100644 --- a/discovery-utils/Cargo.toml +++ b/discovery-utils/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 e143031f7..f597fecee 100644 --- a/samples/brokers/udev-video-broker/Cargo.toml +++ b/samples/brokers/udev-video-broker/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 099dcd283..afc7c2a9c 100644 --- a/shared/Cargo.toml +++ b/shared/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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 2b0f2fc65..75b675dc3 100644 --- a/webhooks/validating/configuration/Cargo.toml +++ b/webhooks/validating/configuration/Cargo.toml @@ -4,7 +4,7 @@ version = "0.12.18" 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"] }