Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ jobs:
- name: Install dependencies (Linux)
if: ${{ matrix.os == 'ubuntu' }}
run: sudo apt install libasound2-dev libspa-0.2-dev libpipewire-0.3-dev
- name: Install Rust 1.88
- name: Install Rust 1.96
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.96
default: true
override: true
components: clippy
Expand All @@ -52,7 +52,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [1.85, 1.86, 1.87, 1.88]
rust: [1.93, 1.94, 1.95, 1.96]
feature-pipewire: [false, true]
exclude:
- os: windows-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.86.0
toolchain: 1.96
default: true
- name: Build documentation
run: cargo doc --all-features --no-deps
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "interflow"
version = "0.1.0"
edition = "2021"
rust-version = "1.85"
rust-version = "1.93"
license = "MIT"

[dependencies]
Expand Down
Loading