fix(src/bin/radicle-job.rs): add missing elided hidden lifetime
The elided hidden lifetime in the return type can lead to confusion, and from Rust 1.89.0 the compiler warns about it by default. Avoid the warning by making the elided lifetime explicit.
The release blog post explains this: https://blog.rust-lang.org/2025/08/07/Rust-1.89.0/#mismatched-lifetime-syntaxes-lint
Signed-off-by: Lars Wirzenius liw@liw.fi
The elided hidden lifetime in the return type can lead to confusion, and from Rust 1.89.0 the compiler warns about it by default. Avoid the warning by making the elided lifetime explicit.
The release blog post explains this: https://blog.rust-lang.org/2025/08/07/Rust-1.89.0/#mismatched-lifetime-syntaxes-lint
Signed-off-by: Lars Wirzenius liw@liw.fi
Rebased