Skip to content

Commit d2aa617

Browse files
committed
Fix CI warning for u128, correct clippy in CI
1 parent f197463 commit d2aa617

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
hash -r
104104
cd ..
105105
106-
- run: PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig cargo clippy -- -D warnings"
106+
- run: PKG_CONFIG_PATH="$HOME/ffmpeg_build/lib/pkgconfig" cargo clippy -- -D warnings
107107

108108
build_and_test:
109109
runs-on: ubuntu-latest

ffmpeg

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
2-
#![allow(clippy::all)]
1+
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals, improper_ctypes)]
32

43
include!(concat!(env!("OUT_DIR"), "/binding.rs"));

0 commit comments

Comments
 (0)