tsk-182: Update rust version #191

Merged
kdeng00 merged 6 commits from tsk-182 into main 2025-10-12 18:23:57 -04:00
4 changed files with 5 additions and 5 deletions
Showing only changes of commit 74e8a2e764 - Show all commits
+1 -1
View File
@@ -16,7 +16,7 @@ jobs:
- name: Install Rust - name: Install Rust
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: 1.88.0 toolchain: 1.90.0
components: cargo components: cargo
- name: Extract Version from Cargo.toml - name: Extract Version from Cargo.toml
+2 -2
View File
@@ -27,10 +27,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install Rust 1.88.0 - name: Install Rust 1.90.0
uses: actions-rs/toolchain@v1 uses: actions-rs/toolchain@v1
with: with:
toolchain: 1.88.0 toolchain: 1.90.0
components: clippy, rustfmt components: clippy, rustfmt
override: true override: true
+1 -1
View File
@@ -2,7 +2,7 @@
name = "icarus" name = "icarus"
version = "0.2.3" version = "0.2.3"
edition = "2024" edition = "2024"
rust-version = "1.88" rust-version = "1.90"
[dependencies] [dependencies]
axum = { version = "0.8.4", features = ["multipart"] } axum = { version = "0.8.4", features = ["multipart"] }
+1 -1
View File
@@ -1,5 +1,5 @@
# Stage 1: Build the application # Stage 1: Build the application
FROM rust:1.88 as builder FROM rust:1.90 as builder
# Set the working directory inside the container # Set the working directory inside the container
WORKDIR /usr/src/app WORKDIR /usr/src/app