Update rust #28

Merged
phoenix merged 5 commits from update_rust into main 2026-03-22 15:41:04 -04:00
3 changed files with 7 additions and 7 deletions
Showing only changes of commit 601435594b - Show all commits

View File

@@ -20,7 +20,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
components: cargo
- name: Extract Version from Cargo.toml

View File

@@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
- run: cargo check
test:
@@ -26,7 +26,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
- run: cargo test
fmt:
@@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
@@ -58,5 +58,5 @@ jobs:
- uses: actions/checkout@v5
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.90.0
toolchain: 1.94
- run: cargo build

View File

@@ -2,7 +2,7 @@
name = "icarus_envy"
version = "0.5.0"
edition = "2024"
rust-version = "1.90"
rust-version = "1.94"
[dependencies]
dotenvy = { version = "0.15.7" }