From 8e6ddbc9dfa66f204f6a8e3c61105b2ac83a7e4a Mon Sep 17 00:00:00 2001 From: KD Date: Mon, 30 Jun 2025 20:49:15 -0400 Subject: [PATCH] Rust std change (#51) * Targeting rust 1.88 * Workflow changes --- .github/workflows/rust-ubuntu-latest.yml | 4 ++-- Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 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 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"