update: upgrade to latest rust; cargo update #90
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
++++
|