Skip to content

fix(deps): update rust crate toml to v1 #5675

fix(deps): update rust crate toml to v1

fix(deps): update rust crate toml to v1 #5675

Triggered via pull request February 18, 2026 21:43
Status Failure
Total duration 2m 9s
Artifacts

rav1e.yml

on: pull_request
Matrix: build-macos
Matrix: build-unix
Matrix: build-windows
Fit to window
Zoom out
Zoom in

Annotations

2 errors
rustfmt-clippy
Error: Clippy has exited with exit code 101
called `unwrap` on `self.limit` after checking its variant with `is_some`: src/api/internal.rs#L467
error: called `unwrap` on `self.limit` after checking its variant with `is_some` --> src/api/internal.rs:467:35 | 466 | if !ignore_limit && self.limit.is_some() { | -------------------- the check is happening here 467 | next_limit = next_limit.min(self.limit.unwrap()); | ^^^^^^^^^^^^^^^^^^^ | = help: try using `match` = help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#unnecessary_unwrap = note: `-D clippy::unnecessary-unwrap` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unnecessary_unwrap)]`