Skip to content

Commit a0a173c

Browse files
chore(*): bump to rust toolchain 1.73 (#679)
* chore(*): bump to rust toolchain 1.73 Signed-off-by: Kate Goldenring <[email protected]> * Update patch version Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Signed-off-by: Kate Goldenring <[email protected]> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 9fe0150 commit a0a173c

File tree

21 files changed

+50
-50
lines changed

21 files changed

+50
-50
lines changed

.github/workflows/check-rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Rust install
3434
uses: dtolnay/rust-toolchain@master
3535
with:
36-
toolchain: 1.68.1
36+
toolchain: 1.73.0
3737
components: clippy, rustfmt
3838
- name: Install Linux requirements
3939
run: |

.github/workflows/run-tarpaulin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
env:
1818
CARGO_TERM_COLOR: always
19-
CARGO_VERSION: 1.68.1
19+
CARGO_VERSION: 1.73.0
2020

2121
jobs:
2222
build:

Cargo.lock

Lines changed: 14 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<p align="center"><img src="https://github.com/project-akri/akri-docs/blob/main/art/logo-horizontal/akri-logo-horizontal-light.svg" alt="Akri Logo" width="300"></p>
22

33
[![Slack channel #akri](https://img.shields.io/badge/slack-akri-blueviolet.svg?logo=slack)](https://kubernetes.slack.com/messages/akri)
4-
[![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)
4+
[![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)
55
[![Kubernetes Version](https://img.shields.io/badge/kubernetes-≥%201.16-blue.svg)](https://kubernetes.io/)
66
[![codecov](https://codecov.io/gh/project-akri/akri/branch/main/graph/badge.svg?token=V468HO7CDE)](https://codecov.io/gh/project-akri/akri)
77
[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/5339/badge)](https://bestpractices.coreinfrastructure.org/projects/5339)

agent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "agent"
3-
version = "0.12.18"
3+
version = "0.12.19"
44
license = "Apache-2.0"
55
authors = ["Kate Goldenring <[email protected]>", "<[email protected]>"]
66
edition = "2018"
7-
rust-version = "1.68.1"
7+
rust-version = "1.73.0"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

build/setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ then
2323
if [ -x "$(command -v sudo)" ];
2424
then
2525
echo "Install rustup"
26-
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1
26+
sudo curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0
2727
else
2828
echo "Install rustup"
29-
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.68.1
29+
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain=1.73.0
3030
fi
3131
else
3232
echo "Found rustup"

controller/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "controller"
3-
version = "0.12.18"
3+
version = "0.12.19"
44
license = "Apache-2.0"
55
66
edition = "2018"
7-
rust-version = "1.68.1"
7+
rust-version = "1.73.0"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

deployment/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.12.18
19+
version: 0.12.19
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
24-
appVersion: 0.12.18
24+
appVersion: 0.12.19

discovery-handler-modules/debug-echo-discovery-handler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "debug-echo-discovery-handler"
3-
version = "0.12.18"
3+
version = "0.12.19"
44
license = "Apache-2.0"
55
authors = ["Kate Goldenring <[email protected]>"]
66
edition = "2018"
7-
rust-version = "1.68.1"
7+
rust-version = "1.73.0"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

discovery-handler-modules/onvif-discovery-handler/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "onvif-discovery-handler"
3-
version = "0.12.18"
3+
version = "0.12.19"
44
license = "Apache-2.0"
55
authors = ["Kate Goldenring <[email protected]>"]
66
edition = "2018"
7-
rust-version = "1.68.1"
7+
rust-version = "1.73.0"
88

99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

0 commit comments

Comments
 (0)