diff --git a/.github/workflows/check.yml b/.github/workflows/check.yml index 8491db2..57fdfcc 100644 --- a/.github/workflows/check.yml +++ b/.github/workflows/check.yml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always - MSRV: "1.60.0" + MSRV: "1.62.0" # ensure that the workflow is only triggered once per PR, subsequent pushes to the PR will cancel # and restart the workflow. See https://docs.github.com/en/actions/using-jobs/using-concurrency diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e8e9e17..9b190e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,7 +26,7 @@ jobs: matrix: # run on beta to ensure that tests won't break on the next version of the rust toolchain # run on msrv to ensure that tests won't break on the minimum supported version of the rust - toolchain: [stable, beta, 1.60.0] + toolchain: [1.62.0, stable, beta] steps: - name: Checkout uses: actions/checkout@v4 diff --git a/Cargo.toml b/Cargo.toml index 8446dbf..f8cf941 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,10 +10,17 @@ keywords = ["winapi", "abstractions", "crossterm", "windows", "screen_buffer"] exclude = ["target", "Cargo.lock"] readme = "README.md" edition = "2021" -rust-version = "1.60.0" +rust-version = "1.62.0" [target.'cfg(windows)'.dependencies] -winapi = { version = "0.3.8", features = ["winbase", "consoleapi", "processenv", "handleapi", "synchapi", "impl-default"] } +winapi = { version = "0.3.8", features = [ + "winbase", + "consoleapi", + "processenv", + "handleapi", + "synchapi", + "impl-default", +] } [package.metadata.docs.rs] default-target = "x86_64-pc-windows-msvc"