diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a1f60c1..df8452e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,10 @@ jobs: uses: dtolnay/rust-toolchain@master with: toolchain: ${{ matrix.toolchain }} + - uses: maxim-lobanov/setup-xcode@v1 + if: ${{ matrix.os == 'macos-latest' && matrix.toolchain == '1.48.0' }} + with: + xcode-version: 13 - name: Cargo build run: cargo build diff --git a/Cargo.toml b/Cargo.toml index c9898ac..e360a92 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ edition = "2018" [target.'cfg(not(windows))'.dependencies] -rustix = { version = "0.35.7", features = ["termios"] } +rustix = { version = "0.36.3", features = ["termios"] } [target.'cfg(windows)'.dependencies.windows-sys] version = "0.42.0"