Update to SCTK 0.18.0

The main highlight is the move to calloop to handle all the requests
which makes it possible to remove all the active polling and clean the
data reading/writing, as well as accepting arbitrary long payloads.

This update also fixes the CI for the repository by moving it to github
actions, sets the minimum rust version, and edition to 2021.

Fixes #46.
Fixes #44.
Fixes #34.
This commit is contained in:
Kirill Chibisov 2023-10-10 20:49:56 +04:00 committed by GitHub
parent e2ffc4f183
commit 31392200dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
15 changed files with 1124 additions and 937 deletions

View file

@ -37,9 +37,16 @@ jobs:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust_version }}
components: clippy
- name: Check documentation
run: cargo doc --no-deps --document-private-items
- name: Install system dependencies
run: sudo apt-get install libxkbcommon-dev libwayland-dev
- name: Run tests
run: cargo test --verbose
- name: Clippy
run: cargo clippy -- -D warnings
- name: Check documentation
run: cargo doc --no-deps --document-private-items