Skip to content

Commit f687eed

Browse files
baumanjkinetiknz
authored andcommitted
Fix import error in dump.rs
This fixes the CI error that's been failing on nightly since Feb 19: ``` error: the item `ParseStrictness` is imported redundantly --> mp4parse_capi\examples\dump.rs:2:5 | 2 | use mp4parse::ParseStrictness; | ^^^^^^^^^^^^^^^^^^^^^^^^^ 3 | use mp4parse_capi::*; | ---------------- the item `ParseStrictness` is already imported here | = note: `-D unused-imports` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(unused_imports)]` ``` I tested locally on with both stable and nightly on macOS.
1 parent a138e40 commit f687eed

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

mp4parse_capi/examples/dump.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use log::info;
2-
use mp4parse::ParseStrictness;
32
use mp4parse_capi::*;
43
use std::env;
54
use std::fs::File;

0 commit comments

Comments
 (0)