v0.3 release #9

Merged
phoenix merged 6 commits from devel into main 2025-07-23 22:04:06 +00:00
4 changed files with 8 additions and 8 deletions
Showing only changes of commit 020d091446 - Show all commits

View File

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

View File

@@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
- run: cargo check
test:
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
- run: cargo test
fmt:
@@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
@@ -60,6 +60,6 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.88.0
- run: cargo build

2
Cargo.lock generated
View File

@@ -297,7 +297,7 @@ checksum = "f154ce46856750ed433c8649605bf7ed2de3bc35fd9d2a9f30cddd873c80cb08"
[[package]]
name = "icarus_envy"
version = "0.2.1"
version = "0.2.2"
dependencies = [
"async-std",
"const_format",

View File

@@ -2,7 +2,7 @@
name = "icarus_envy"
version = "0.2.2"
edition = "2024"
rust-version = "1.86"
rust-version = "1.88"
[dependencies]
dotenvy = { version = "0.15.7" }