diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f67ddac..bb23d06 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - name: Install Rust uses: actions-rs/toolchain@v1 with: - toolchain: 1.88.0 + toolchain: 1.90.0 components: cargo - name: Extract Version from Cargo.toml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 711b72c..152abea 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -27,10 +27,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install Rust 1.88.0 + - name: Install Rust 1.90.0 uses: actions-rs/toolchain@v1 with: - toolchain: 1.88.0 + toolchain: 1.90.0 components: clippy, rustfmt override: true diff --git a/Cargo.toml b/Cargo.toml index c00a375..61def54 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,7 +2,7 @@ name = "icarus" version = "0.2.3" edition = "2024" -rust-version = "1.88" +rust-version = "1.90" [dependencies] axum = { version = "0.8.4", features = ["multipart"] } diff --git a/Dockerfile b/Dockerfile index d809e75..8a1a415 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Stage 1: Build the application -FROM rust:1.88 as builder +FROM rust:1.90 as builder # Set the working directory inside the container WORKDIR /usr/src/app