Skip to content

Commit cd179f2

Browse files
baumanjkinetiknz
authored andcommitted
Fix CI by undoing the reordering of extern crate statements
This was changed by rustfmt, but it breaks `build_ffi_test` for some reason. Add annotation to keep rustfmt from reordering them again (at least until we come up with a better fix). See #197 (comment)
1 parent 44de99e commit cd179f2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

mp4parse_capi/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@
3535
// License, v. 2.0. If a copy of the MPL was not distributed with this
3636
// file, You can obtain one at https://mozilla.org/MPL/2.0/.
3737

38-
extern crate byteorder;
3938
extern crate mp4parse;
39+
#[rustfmt::skip] // See https://github.com/mozilla/mp4parse-rust/issues/197#issuecomment-596910016
40+
extern crate byteorder;
4041
extern crate num_traits;
4142

4243
use byteorder::WriteBytesExt;

0 commit comments

Comments
 (0)