feat: add tui-qrcode crate #102
check.yml
on: pull_request
check
/
...
/
fmt
14s
check
/
...
/
doc
30s
check
/
...
/
check
27s
Matrix: check / clippy
Annotations
1 error and 11 warnings
check / 1.80.0 / check
Process completed with exit code 101.
|
check / stable / fmt
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check / 1.80.0 / check
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check / nightly / doc
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
check / stable / clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L79
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:79:6
|
79 | impl<'content, W> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
79 - impl<'content, W> Popup<'content, W> {
79 + impl<W> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L151
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:151:6
|
151 | impl<'content, W: KnownSize> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
151 - impl<'content, W: KnownSize> Popup<'content, W> {
151 + impl<W: KnownSize> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'a:
tui-prompts/src/text_prompt.rs#L178
warning: the following explicit lifetimes could be elided: 'a
--> tui-prompts/src/text_prompt.rs:178:6
|
178 | impl<'a> TextPrompt<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
178 - impl<'a> TextPrompt<'a> {
178 + impl TextPrompt<'_> {
|
|
check / beta / clippy
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L79
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:79:6
|
79 | impl<'content, W> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
79 - impl<'content, W> Popup<'content, W> {
79 + impl<W> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'content:
tui-popup/src/popup.rs#L151
warning: the following explicit lifetimes could be elided: 'content
--> tui-popup/src/popup.rs:151:6
|
151 | impl<'content, W: KnownSize> Popup<'content, W> {
| ^^^^^^^^ ^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
151 - impl<'content, W: KnownSize> Popup<'content, W> {
151 + impl<W: KnownSize> Popup<'_, W> {
|
|
the following explicit lifetimes could be elided: 'a:
tui-prompts/src/text_prompt.rs#L178
warning: the following explicit lifetimes could be elided: 'a
--> tui-prompts/src/text_prompt.rs:178:6
|
178 | impl<'a> TextPrompt<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `#[warn(clippy::needless_lifetimes)]` on by default
help: elide the lifetimes
|
178 - impl<'a> TextPrompt<'a> {
178 + impl TextPrompt<'_> {
|
|