From 9efb3dcf1dec6ebe7be5782f6645a9d58c10b01e Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 30 Jun 2025 20:42:32 -0400 Subject: [PATCH 1/2] Targeting rust 1.88 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 817830f..97ee2ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "icarus-dm" version = "0.6.0" -rust-version = "1.86" +rust-version = "1.88" edition = "2024" -- 2.47.3 From b8a5b3a65954e8917ceefa0a154f2a662c571275 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Mon, 30 Jun 2025 20:42:53 -0400 Subject: [PATCH 2/2] Workflow changes --- .github/workflows/rust-ubuntu-latest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-ubuntu-latest.yml b/.github/workflows/rust-ubuntu-latest.yml index 3edcd2a..886a973 100644 --- a/.github/workflows/rust-ubuntu-latest.yml +++ b/.github/workflows/rust-ubuntu-latest.yml @@ -17,7 +17,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Install Rust version - run: rustup install 1.86.0 && rustup default 1.86.0 + run: rustup install 1.88.0 && rustup default 1.88.0 - name: Debug secret run: echo "${{ secrets.MYREPO_TOKEN }}" | head -c 10 ; echo "..." @@ -36,4 +36,4 @@ jobs: EXTREPO_KEY: ${{ secrets.MYREPO_TOKEN }} - name: Run tests - run: cargo test --verbose \ No newline at end of file + run: cargo test --verbose -- 2.47.3