feat: Implement interactive popup dragging and resizing #121
check.yml
on: pull_request
check
/
...
/
fmt
10s
check
/
...
/
doc
23s
check
/
...
/
check
25s
Matrix: check / clippy
Annotations
4 warnings
check / stable / fmt
Cache not found for keys: v0-rust-fmt-Linux-31217fda-8f7c15ae, v0-rust-fmt-Linux-31217fda
|
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
Cache not found for keys: v0-rust-clippy-Linux-31217fda-ee750f1f, v0-rust-clippy-Linux-31217fda
|
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<'_> {
|
|