Skip to content

Commit a4ee3c7

Browse files
author
admin
committed
fmt
1 parent 4db3d35 commit a4ee3c7

File tree

3 files changed

+50
-54
lines changed

3 files changed

+50
-54
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
save-if: ${{ matrix.ffmpeg.version == '7.1' }}
8181

8282
- name: Check format
83-
run: cargo fmt -- --check
83+
run: cargo fmt --all -- --check
8484
- name: Lint
8585
run: cargo clippy --all-targets $CARGO_FEATURES
8686
- name: Build
@@ -118,7 +118,7 @@ jobs:
118118
prefix-key: "v2-rust"
119119

120120
- name: Check format
121-
run: cargo fmt -- --check
121+
run: cargo fmt --all -- --check
122122
- name: Lint
123123
run: cargo clippy --all-targets $CARGO_FEATURES
124124
- name: Build
@@ -172,7 +172,7 @@ jobs:
172172
save-if: ${{ matrix.ffmpeg_version == '7.1' }}
173173

174174
- name: Check format
175-
run: cargo fmt -- --check
175+
run: cargo fmt --all --- --check
176176
- name: Lint
177177
run: cargo clippy --all-targets $CARGO_FEATURES
178178
- name: Build

Cargo.lock.MSRV

Lines changed: 46 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ffmpeg-sys-third/src/avutil/pixfmt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use libc::c_int;
22

3-
use crate::{AVChromaLocation, AVPixelFormat};
43
use crate::AVPixelFormat::*;
4+
use crate::{AVChromaLocation, AVPixelFormat};
55

66
impl AVChromaLocation {
77
pub fn from_c_int(n: c_int) -> Option<Self> {

0 commit comments

Comments
 (0)