Bevy+Ratutui powered Monitoring of Pico-Strike devices

fix some clippy nonsense

+4 -2
+1
Cargo.lock
··· 2839 2839 "color-eyre", 2840 2840 "crossterm", 2841 2841 "ratatui", 2842 + "striker-proto", 2842 2843 ] 2843 2844 2844 2845 [[package]]
+1
Cargo.toml
··· 26 26 ratatui = "0.30.0" 27 27 bevy = { version = "0.17", default-features = false, features = ["bevy_state", "async_executor", "async-io"] } 28 28 bevy_ratatui = { git = "https://tangled.org/sachy.dev/bevy_ratatui" } 29 + striker-proto = { path = "striker-proto" } 29 30 30 31 [lib] 31 32 path = "src/lib.rs"
+2 -2
src/main.rs
··· 3 3 bevy::app::App::new() 4 4 .add_plugins(( 5 5 bevy_ratatui::RatatuiPlugins::default(), 6 - bevy::time::TimePlugin::default(), 6 + bevy::time::TimePlugin, 7 7 bevy::app::TaskPoolPlugin { 8 8 task_pool_options: bevy::app::TaskPoolOptions { 9 9 min_total_threads: 2, ··· 12 12 }, 13 13 }, 14 14 bevy::app::ScheduleRunnerPlugin::run_loop(wait_duration), 15 - bevy::state::app::StatesPlugin::default(), 15 + bevy::state::app::StatesPlugin, 16 16 striker::StrikerPlugin, 17 17 )) 18 18 .run();