Merge pull request #53 from Electric-Coin-Company/encrypted-mnemonic #155
Annotations
2 errors and 4 warnings
/home/runner/work/zec-sqlite-cli/zec-sqlite-cli/src/main.rs#L102
the following explicit lifetimes could be elided: 'a
|
the following explicit lifetimes could be elided: 'a:
src/main.rs#L102
error: the following explicit lifetimes could be elided: 'a
--> src/remote.rs:102:6
|
102 | impl<'a> fmt::Display for Server<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
102 - impl<'a> fmt::Display for Server<'a> {
102 + impl fmt::Display for Server<'_> {
|
|
Rustfmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build on ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Build latest on ubuntu-latest
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|