fix(deps): update all non-major dependencies #5645
Annotations
5 errors
|
msrv
Process completed with exit code 101.
|
|
rustfmt-clippy
Error: Clippy has exited with exit code 101
|
|
mismatched types:
src/api/internal.rs#L886
error[E0308]: mismatched types
--> src/api/internal.rs:886:10
|
885 | if keyframes_forced.contains(next_lookahead_frame)
| ----------------------------------------------- expected because this is `bool`
886 | || keyframe_detector.analyze_next_frame(
| __________^
887 | | lookahead_frames,
888 | | *next_lookahead_frame as usize,
889 | | *keyframes.iter().last().unwrap() as usize,
890 | | )
| |_______^ expected `bool`, found `(bool, Option<ScenecutResult>)`
|
= note: expected type `bool`
found tuple `(bool, std::option::Option<av_scenechange::ScenecutResult>)`
|
|
this function takes 8 arguments but 9 arguments were supplied:
src/api/internal.rs#L276
error[E0061]: this function takes 8 arguments but 9 arguments were supplied
--> src/api/internal.rs:276:33
|
276 | let mut keyframe_detector = SceneChangeDetector::new(
| ^^^^^^^^^^^^^^^^^^^^^^^^
...
298 | av_scenechange::CpuFeatureLevel::default(),
| ------------------------------------------ unexpected argument #9
|
note: associated function defined here
--> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/av-scenechange-0.19.2/src/analyze/mod.rs:108:12
|
108 | pub fn new(
| ^^^
help: remove the extra argument
|
297 - enc.max_key_frame_interval as usize,
298 - av_scenechange::CpuFeatureLevel::default(),
297 + enc.max_key_frame_interval as usize,
|
|
|
failed to resolve: could not find `CpuFeatureLevel` in `av_scenechange`:
src/api/internal.rs#L298
error[E0433]: failed to resolve: could not find `CpuFeatureLevel` in `av_scenechange`
--> src/api/internal.rs:298:23
|
298 | av_scenechange::CpuFeatureLevel::default(),
| ^^^^^^^^^^^^^^^ could not find `CpuFeatureLevel` in `av_scenechange`
|
help: consider importing this enum through its public re-export
|
11 + use crate::config::CpuFeatureLevel;
|
help: if you import `CpuFeatureLevel`, refer to it directly
|
298 - av_scenechange::CpuFeatureLevel::default(),
298 + CpuFeatureLevel::default(),
|
|