Skip to content

Commit c076004

Browse files
committed
Fix CI warning for u128, correct clippy in CI
1 parent 0019790 commit c076004

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
#![allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
2-
#![allow(clippy::all)]
3-
1+
#![allow(
2+
non_snake_case,
3+
non_camel_case_types,
4+
non_upper_case_globals,
5+
improper_ctypes,
6+
clippy::all
7+
)]
48
include!(concat!(env!("OUT_DIR"), "/binding.rs"));

0 commit comments

Comments
 (0)