From d417f2754b33441bfa9f570524df2bdd7b89d5f4 Mon Sep 17 00:00:00 2001 From: Kylee Tilley Date: Wed, 10 Jan 2024 21:54:20 -0600 Subject: [PATCH] Update rust to 1.75 --- .github/workflows/build-artifacts.yml | 4 ++-- .github/workflows/pr.yml | 2 +- Cargo.toml | 2 +- Dockerfile | 2 +- playground/rust/lox-wasm/Cargo.toml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build-artifacts.yml b/.github/workflows/build-artifacts.yml index 89484c1..abb77d7 100644 --- a/.github/workflows/build-artifacts.yml +++ b/.github/workflows/build-artifacts.yml @@ -15,7 +15,7 @@ jobs: with: components: clippy profile: minimal - toolchain: 1.73.0 + toolchain: 1.75.0 - name: Install Rust (nightly) uses: actions-rs/toolchain@v1 with: @@ -56,7 +56,7 @@ jobs: with: components: clippy profile: minimal - toolchain: 1.73.0 + toolchain: 1.75.0 - name: Install Rust (nightly) uses: actions-rs/toolchain@v1 with: diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 4548222..0a9845a 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -14,7 +14,7 @@ jobs: with: components: clippy profile: minimal - toolchain: 1.73.0 + toolchain: 1.75.0 - name: Install Rust (nightly) uses: actions-rs/toolchain@v1 with: diff --git a/Cargo.toml b/Cargo.toml index 4cdaa62..d9c4cc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -25,7 +25,7 @@ keywords = [ license = "MIT" name = "locks" repository = "https://github.com/kyleect/locks" -rust-version = "1.73" +rust-version = "1.75" version = "1.0.0" publish = false diff --git a/Dockerfile b/Dockerfile index b874912..46b61c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ ################################################################################ # Create a stage for building the application. -ARG RUST_VERSION=1.73.0 +ARG RUST_VERSION=1.75.0 FROM rust:${RUST_VERSION}-slim-bullseye AS build WORKDIR /app diff --git a/playground/rust/lox-wasm/Cargo.toml b/playground/rust/lox-wasm/Cargo.toml index 29e978d..7106c43 100644 --- a/playground/rust/lox-wasm/Cargo.toml +++ b/playground/rust/lox-wasm/Cargo.toml @@ -10,7 +10,7 @@ description = "Webassembly build of Locks for the playground" edition = "2021" license = "MIT" repository = "https://github.com/kyleect/locks" -rust-version = "1.73" +rust-version = "1.75" version = "1.0.0" publish = false