8000 update: upgrade to latest rust; cargo update · oxidecomputer/phbl@61c550c · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

update: upgrade to latest rust; cargo update #90

update: upgrade to latest rust; cargo update

update: upgrade to latest rust; cargo update #90

Triggered via pull request June 12, 2025 17:18
Status Success
Total duration 32s
Artifacts

license-check.yaml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

1 warning
lifetime flowing from input to output with different syntax can be confusing: src/loader.rs#L51
warning: lifetime flowing from input to output with different syntax can be confusing --> src/loader.rs:51:21 | 51 | fn parse_elf(bytes: &[u8]) -> Result<Elf> { | ^^^^^ --- the lifetime gets resolved as `'_` | | | this lifetime flows to the output | = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default help: one option is to remove the lifetime for references and use the anonymous lifetime for paths | 51 | fn parse_elf(bytes: &[u8]) -> Result<Elf<'_>> { | 1AB7 ++++
0