diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e97b936..6bd5af402 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -60,6 +60,9 @@ jobs: with: rust-version: ${{ matrix.rust }} + - name: Update system repositories + run: sudo apt-get update + - name: Install system dependencies run: sudo apt-get install libfontconfig1-dev libxkbcommon-dev libwayland-dev diff --git a/src/lib.rs b/src/lib.rs index f58e5a3dc..07e74e48c 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -5,6 +5,8 @@ )] #![forbid(unsafe_op_in_unsafe_fn)] #![allow(clippy::new_without_default)] +// keep existing usage +#![allow(clippy::uninlined_format_args)] /// Re-exports of some crates, for convenience. pub mod reexports {