Remove unnecessary bevy feature dependencies #92
Annotations
1 warning
|
clippy:
src/crossterm_context/translation/keyboard_translation.rs#L975
warning: useless conversion to the same type: `std::string::String`
--> src/crossterm_context/translation/keyboard_translation.rs:975:14
|
975 | Some(String::from(character.clone()))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: consider removing `String::from()`: `character.clone()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.93.0/index.html#useless_conversion
= note: `#[warn(clippy::useless_conversion)]` on by default
|
Loading