>()
[INFO] [stdout] 169 ~ .join(" | ")
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_card.rs:72:23
[INFO] [stdout] |
[INFO] [stdout] 72 |
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 72 -
[INFO] [stdout] 72 +
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:174:53
[INFO] [stdout] |
[INFO] [stdout] 174 | ... {"Rating "}{(anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0))}{" / 10.0"}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 174 - {"Rating "}{(anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0))}{" / 10.0"}
[INFO] [stdout] 174 + {"Rating "}{anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0)}{" / 10.0"}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `DARK_THEME`
[INFO] [stdout] --> src/components/anime_desc.rs:6:113
[INFO] [stdout] |
[INFO] [stdout] 6 | use crate::{components::{animeobjcontext_provider::AnimeObjContext, appcontext_provider::{AppContext, Language, DARK_THEME}, char_card::C...
[INFO] [stdout] | ^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused imports: `AnimeObjAsProp` and `AnimeObj`
[INFO] [stdout] --> src/components/anime_desc.rs:8:21
[INFO] [stdout] |
[INFO] [stdout] 8 | use super::stores::{AnimeObj, AnimeObjAsProp, CharWrapper};
[INFO] [stdout] | ^^^^^^^^ ^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:175:52
[INFO] [stdout] |
[INFO] [stdout] 175 | {"Episodes "}{(anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0))}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 175 - {"Episodes "}{(anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0))}
[INFO] [stdout] 175 + {"Episodes "}{anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0)}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:176:51
[INFO] [stdout] |
[INFO] [stdout] 176 | ...>{"Status "}{(anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string()))}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 176 - {"Status "}{(anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string()))}
[INFO] [stdout] 176 + {"Status "}{anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string())}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:140:27
[INFO] [stdout] |
[INFO] [stdout] 140 |
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 140 -
[INFO] [stdout] 140 +
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `utils::handle_theme`
[INFO] [stdout] --> src/components/loading.rs:4:58
[INFO] [stdout] |
[INFO] [stdout] 4 | use crate::{components::appcontext_provider::AppContext, utils::handle_theme};
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:146:21
[INFO] [stdout] |
[INFO] [stdout] 146 | (anime_obj
[INFO] [stdout] | ^
[INFO] [stdout] ...
[INFO] [stdout] 155 | .join(", ")
[INFO] [stdout] | ____________________________________^
[INFO] [stdout] 156 | | )
[INFO] [stdout] | |_________________^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 146 ~ anime_obj
[INFO] [stdout] 147 | .anime_obj
[INFO] [stdout] ...
[INFO] [stdout] 154 | .collect::>()
[INFO] [stdout] 155 ~ .join(", ")
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:160:21
[INFO] [stdout] |
[INFO] [stdout] 160 | (anime_obj
[INFO] [stdout] | ^
[INFO] [stdout] ...
[INFO] [stdout] 169 | .join(" | ")
[INFO] [stdout] | _____________________________________^
[INFO] [stdout] 170 | | )
[INFO] [stdout] | |_________________^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 160 ~ anime_obj
[INFO] [stdout] 161 | .anime_obj
[INFO] [stdout] ...
[INFO] [stdout] 168 | .collect::>()
[INFO] [stdout] 169 ~ .join(" | ")
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:174:53
[INFO] [stdout] |
[INFO] [stdout] 174 | ... {"Rating "}{(anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0))}{" / 10.0"}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 174 - {"Rating "}{(anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0))}{" / 10.0"}
[INFO] [stdout] 174 + {"Rating "}{anime_obj.anime_obj.as_ref().unwrap().score.as_ref().unwrap_or(&0.0)}{" / 10.0"}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `gloo::console::log`
[INFO] [stdout] --> src/components/anime_result_v2.rs:1:5
[INFO] [stdout] |
[INFO] [stdout] 1 | use gloo::console::log;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:175:52
[INFO] [stdout] |
[INFO] [stdout] 175 | {"Episodes "}{(anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0))}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 175 - {"Episodes "}{(anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0))}
[INFO] [stdout] 175 + {"Episodes "}{anime_obj.anime_obj.as_ref().unwrap().episodes.as_ref().unwrap_or(&0)}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `Route`
[INFO] [stdout] --> src/components/anime_result_v2.rs:6:126
[INFO] [stdout] |
[INFO] [stdout] 6 | use crate::{components::{anime_card::AnimeCard, appcontext_provider::AppContext, stores::NavbarSearch}, utils::handle_theme, Route};
[INFO] [stdout] | ^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unnecessary parentheses around function argument
[INFO] [stdout] --> src/components/anime_desc.rs:176:51
[INFO] [stdout] |
[INFO] [stdout] 176 | ...>{"Status "}{(anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string()))}
[INFO] [stdout] | ^ ^
[INFO] [stdout] |
[INFO] [stdout] help: remove these parentheses
[INFO] [stdout] |
[INFO] [stdout] 176 - {"Status "}{(anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string()))}
[INFO] [stdout] 176 + {"Status "}{anime_obj.anime_obj.as_ref().clone().unwrap().status.as_ref().unwrap_or(&"Unavailable".to_string())}
[INFO] [stdout] |
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `utils::handle_theme`
[INFO] [stdout] --> src/components/loading.rs:4:58
[INFO] [stdout] |
[INFO] [stdout] 4 | use crate::{components::appcontext_provider::AppContext, utils::handle_theme};
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::routes::Route`
[INFO] [stdout] --> src/components/TEMPLATE.rs:6:5
[INFO] [stdout] |
[INFO] [stdout] 6 | use crate::components::routes::Route;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::utils::handle_theme`
[INFO] [stdout] --> src/components/TEMPLATE.rs:7:5
[INFO] [stdout] |
[INFO] [stdout] 7 | use crate::utils::handle_theme;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::stores::*`
[INFO] [stdout] --> src/components/TEMPLATE.rs:8:5
[INFO] [stdout] |
[INFO] [stdout] 8 | use crate::components::stores::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::routes::Route`
[INFO] [stdout] --> src/components/episode_card.rs:7:5
[INFO] [stdout] |
[INFO] [stdout] 7 | use crate::components::routes::Route;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `gloo::console::log`
[INFO] [stdout] --> src/components/anime_result_v2.rs:1:5
[INFO] [stdout] |
[INFO] [stdout] 1 | use gloo::console::log;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `Route`
[INFO] [stdout] --> src/components/anime_result_v2.rs:6:126
[INFO] [stdout] |
[INFO] [stdout] 6 | use crate::{components::{anime_card::AnimeCard, appcontext_provider::AppContext, stores::NavbarSearch}, utils::handle_theme, Route};
[INFO] [stdout] | ^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::routes::Route`
[INFO] [stdout] --> src/components/TEMPLATE.rs:6:5
[INFO] [stdout] |
[INFO] [stdout] 6 | use crate::components::routes::Route;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::utils::handle_theme`
[INFO] [stdout] --> src/components/TEMPLATE.rs:7:5
[INFO] [stdout] |
[INFO] [stdout] 7 | use crate::utils::handle_theme;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::stores::*`
[INFO] [stdout] --> src/components/TEMPLATE.rs:8:5
[INFO] [stdout] |
[INFO] [stdout] 8 | use crate::components::stores::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `crate::components::routes::Route`
[INFO] [stdout] --> src/components/episode_card.rs:7:5
[INFO] [stdout] |
[INFO] [stdout] 7 | use crate::components::routes::Route;
[INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `yewdux::prelude`
[INFO] [stdout] --> src/utils.rs:9:5
[INFO] [stdout] |
[INFO] [stdout] 9 | use yewdux::prelude::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `yewdux::prelude`
[INFO] [stdout] --> src/components/char_card.rs:2:5
[INFO] [stdout] |
[INFO] [stdout] 2 | use yewdux::prelude::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `r_state`
[INFO] [stdout] --> src/components/top_navbar.rs:21:10
[INFO] [stdout] |
[INFO] [stdout] 21 | let (r_state, r_disp) = use_store::();
[INFO] [stdout] | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_r_state`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(unused_variables)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav_used`
[INFO] [stdout] --> src/components/top_navbar.rs:37:13
[INFO] [stdout] |
[INFO] [stdout] 37 | let nav_used = navigator.clone();
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nav_used`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/top_navbar.rs:38:13
[INFO] [stdout] |
[INFO] [stdout] 38 | let nav = navigator.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `theme_tog_label` is never read
[INFO] [stdout] --> src/components/top_navbar.rs:54:13
[INFO] [stdout] |
[INFO] [stdout] 54 | let mut theme_tog_label = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout] = note: `#[warn(unused_assignments)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:25:30
[INFO] [stdout] |
[INFO] [stdout] 25 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:40:30
[INFO] [stdout] |
[INFO] [stdout] 40 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:73:15
[INFO] [stdout] |
[INFO] [stdout] 73 | move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:80:15
[INFO] [stdout] |
[INFO] [stdout] 80 | move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:141:43
[INFO] [stdout] |
[INFO] [stdout] 141 | let clear_text = Callback::from(move |event: FocusEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `query`
[INFO] [stdout] --> src/components/top_navbar.rs:163:17
[INFO] [stdout] |
[INFO] [stdout] 163 | let query = query.clone();
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_query`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `yewdux::prelude`
[INFO] [stdout] --> src/utils.rs:9:5
[INFO] [stdout] |
[INFO] [stdout] 9 | use yewdux::prelude::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused import: `yewdux::prelude`
[INFO] [stdout] --> src/components/char_card.rs:2:5
[INFO] [stdout] |
[INFO] [stdout] 2 | use yewdux::prelude::*;
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `r_state`
[INFO] [stdout] --> src/components/top_navbar.rs:21:10
[INFO] [stdout] |
[INFO] [stdout] 21 | let (r_state, r_disp) = use_store::();
[INFO] [stdout] | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_r_state`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(unused_variables)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav_used`
[INFO] [stdout] --> src/components/top_navbar.rs:37:13
[INFO] [stdout] |
[INFO] [stdout] 37 | let nav_used = navigator.clone();
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nav_used`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/top_navbar.rs:38:13
[INFO] [stdout] |
[INFO] [stdout] 38 | let nav = navigator.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout] --> src/components/top_navbar.rs:109:21
[INFO] [stdout] |
[INFO] [stdout] 109 | let mut result: QueryResult;
[INFO] [stdout] | ----^^^^^^
[INFO] [stdout] | |
[INFO] [stdout] | help: remove this `mut`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(unused_mut)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `theme_tog_label` is never read
[INFO] [stdout] --> src/components/top_navbar.rs:54:13
[INFO] [stdout] |
[INFO] [stdout] 54 | let mut theme_tog_label = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout] = note: `#[warn(unused_assignments)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:25:30
[INFO] [stdout] |
[INFO] [stdout] 25 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:40:30
[INFO] [stdout] |
[INFO] [stdout] 40 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:73:15
[INFO] [stdout] |
[INFO] [stdout] 73 | move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:80:15
[INFO] [stdout] |
[INFO] [stdout] 80 | move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout] --> src/components/top_navbar.rs:192:17
[INFO] [stdout] |
[INFO] [stdout] 192 | let mut user_ok: bool;
[INFO] [stdout] | ----^^^^^^^
[INFO] [stdout] | |
[INFO] [stdout] | help: remove this `mut`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/top_navbar.rs:141:43
[INFO] [stdout] |
[INFO] [stdout] 141 | let clear_text = Callback::from(move |event: FocusEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `query`
[INFO] [stdout] --> src/components/top_navbar.rs:163:17
[INFO] [stdout] |
[INFO] [stdout] 163 | let query = query.clone();
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_query`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout] --> src/components/top_navbar.rs:109:21
[INFO] [stdout] |
[INFO] [stdout] 109 | let mut result: QueryResult;
[INFO] [stdout] | ----^^^^^^
[INFO] [stdout] | |
[INFO] [stdout] | help: remove this `mut`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(unused_mut)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: variable does not need to be mutable
[INFO] [stdout] --> src/components/top_navbar.rs:192:17
[INFO] [stdout] |
[INFO] [stdout] 192 | let mut user_ok: bool;
[INFO] [stdout] | ----^^^^^^^
[INFO] [stdout] | |
[INFO] [stdout] | help: remove this `mut`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/home_page.rs:24:13
[INFO] [stdout] |
[INFO] [stdout] 24 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/home_page.rs:25:14
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/home_page.rs:25:25
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/home_page.rs:24:13
[INFO] [stdout] |
[INFO] [stdout] 24 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/home_page.rs:25:14
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/home_page.rs:25:25
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/anime_result.rs:25:21
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = use_store::();
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `anime_episode`
[INFO] [stdout] --> src/components/anime_result.rs:27:9
[INFO] [stdout] |
[INFO] [stdout] 27 | let anime_episode = use_state(|| AnimeEpisode{..Default::default()});
[INFO] [stdout] | ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_anime_episode`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:113:31
[INFO] [stdout] |
[INFO] [stdout] 113 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:124:27
[INFO] [stdout] |
[INFO] [stdout] 124 | move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8).update_loading_page_into(true));
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result.rs:167:25
[INFO] [stdout] |
[INFO] [stdout] 167 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:159:31
[INFO] [stdout] |
[INFO] [stdout] 159 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:168:27
[INFO] [stdout] |
[INFO] [stdout] 168 | ... move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8).update_loading_page_into(true))}}>{n})
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/anime_result.rs:25:21
[INFO] [stdout] |
[INFO] [stdout] 25 | let (nbs_state, nbs_disp) = use_store::();
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `anime_episode`
[INFO] [stdout] --> src/components/anime_result.rs:27:9
[INFO] [stdout] |
[INFO] [stdout] 27 | let anime_episode = use_state(|| AnimeEpisode{..Default::default()});
[INFO] [stdout] | ^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_anime_episode`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:113:31
[INFO] [stdout] |
[INFO] [stdout] 113 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:124:27
[INFO] [stdout] |
[INFO] [stdout] 124 | move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8).update_loading_page_into(true));
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `title_rendered` is never read
[INFO] [stdout] --> src/components/anime_card.rs:39:13
[INFO] [stdout] |
[INFO] [stdout] 39 | let mut title_rendered = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result.rs:167:25
[INFO] [stdout] |
[INFO] [stdout] 167 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:159:31
[INFO] [stdout] |
[INFO] [stdout] 159 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result.rs:168:27
[INFO] [stdout] |
[INFO] [stdout] 168 | ... move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8).update_loading_page_into(true))}}>{n})
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/anime_card.rs:20:30
[INFO] [stdout] |
[INFO] [stdout] 20 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `title_rendered` is never read
[INFO] [stdout] --> src/components/anime_desc.rs:36:13
[INFO] [stdout] |
[INFO] [stdout] 36 | let mut title_rendered = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `default_title` is never read
[INFO] [stdout] --> src/components/anime_desc.rs:37:13
[INFO] [stdout] |
[INFO] [stdout] 37 | let mut default_title = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `title_rendered` is never read
[INFO] [stdout] --> src/components/anime_card.rs:39:13
[INFO] [stdout] |
[INFO] [stdout] 39 | let mut title_rendered = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `event`
[INFO] [stdout] --> src/components/anime_card.rs:20:30
[INFO] [stdout] |
[INFO] [stdout] 20 | Callback::from(move |event: MouseEvent| {
[INFO] [stdout] | ^^^^^ help: if this is intentional, prefix it with an underscore: `_event`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `title_rendered` is never read
[INFO] [stdout] --> src/components/anime_desc.rs:36:13
[INFO] [stdout] |
[INFO] [stdout] 36 | let mut title_rendered = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: value assigned to `default_title` is never read
[INFO] [stdout] --> src/components/anime_desc.rs:37:13
[INFO] [stdout] |
[INFO] [stdout] 37 | let mut default_title = "".to_string();
[INFO] [stdout] | ^^^^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = help: maybe it is overwritten before being read?
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/footer.rs:10:24
[INFO] [stdout] |
[INFO] [stdout] 10 | let back_to_top = |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result_v2.rs:26:13
[INFO] [stdout] |
[INFO] [stdout] 26 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result_v2.rs:97:25
[INFO] [stdout] |
[INFO] [stdout] 97 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result_v2.rs:89:31
[INFO] [stdout] |
[INFO] [stdout] 89 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result_v2.rs:98:27
[INFO] [stdout] |
[INFO] [stdout] 98 | move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8))}}>{n})
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/footer.rs:10:24
[INFO] [stdout] |
[INFO] [stdout] 10 | let back_to_top = |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/back_btn.rs:7:22
[INFO] [stdout] |
[INFO] [stdout] 7 | let back = move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result_v2.rs:26:13
[INFO] [stdout] |
[INFO] [stdout] 26 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/anime_result_v2.rs:97:25
[INFO] [stdout] |
[INFO] [stdout] 97 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `app_ctx`
[INFO] [stdout] --> src/components/TEMPLATE.rs:17:13
[INFO] [stdout] |
[INFO] [stdout] 17 | let app_ctx = app_ctx.clone();
[INFO] [stdout] | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_app_ctx`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result_v2.rs:89:31
[INFO] [stdout] |
[INFO] [stdout] 89 | move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/TEMPLATE.rs:18:13
[INFO] [stdout] |
[INFO] [stdout] 18 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/anime_result_v2.rs:98:27
[INFO] [stdout] |
[INFO] [stdout] 98 | move |e: MouseEvent| {app_ctx.dispatch((*app_ctx).update_page_into(n as u8))}}>{n})
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/TEMPLATE.rs:19:14
[INFO] [stdout] |
[INFO] [stdout] 19 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/TEMPLATE.rs:19:25
[INFO] [stdout] |
[INFO] [stdout] 19 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/episode_card.rs:28:13
[INFO] [stdout] |
[INFO] [stdout] 28 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/episode_card.rs:29:14
[INFO] [stdout] |
[INFO] [stdout] 29 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/episode_card.rs:29:25
[INFO] [stdout] |
[INFO] [stdout] 29 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `e`
[INFO] [stdout] --> src/components/back_btn.rs:7:22
[INFO] [stdout] |
[INFO] [stdout] 7 | let back = move |e: MouseEvent| {
[INFO] [stdout] | ^ help: if this is intentional, prefix it with an underscore: `_e`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `app_ctx`
[INFO] [stdout] --> src/components/TEMPLATE.rs:17:13
[INFO] [stdout] |
[INFO] [stdout] 17 | let app_ctx = app_ctx.clone();
[INFO] [stdout] | ^^^^^^^ help: if this is intentional, prefix it with an underscore: `_app_ctx`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/TEMPLATE.rs:18:13
[INFO] [stdout] |
[INFO] [stdout] 18 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/TEMPLATE.rs:19:14
[INFO] [stdout] |
[INFO] [stdout] 19 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/TEMPLATE.rs:19:25
[INFO] [stdout] |
[INFO] [stdout] 19 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nav`
[INFO] [stdout] --> src/components/episode_card.rs:28:13
[INFO] [stdout] |
[INFO] [stdout] 28 | let nav = nav.clone();
[INFO] [stdout] | ^^^ help: if this is intentional, prefix it with an underscore: `_nav`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_state`
[INFO] [stdout] --> src/components/episode_card.rs:29:14
[INFO] [stdout] |
[INFO] [stdout] 29 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_state`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: unused variable: `nbs_disp`
[INFO] [stdout] --> src/components/episode_card.rs:29:25
[INFO] [stdout] |
[INFO] [stdout] 29 | let (nbs_state, nbs_disp) = (nbs_state.clone(), nbs_disp.clone());
[INFO] [stdout] | ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_nbs_disp`
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: constant `AUTO_THEME` is never used
[INFO] [stdout] --> src/components/appcontext_provider.rs:24:11
[INFO] [stdout] |
[INFO] [stdout] 24 | pub const AUTO_THEME: Theme = Theme::Auto;
[INFO] [stdout] | ^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(dead_code)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: module `TEMPLATE` should have a snake case name
[INFO] [stdout] --> src/components/mod.rs:17:9
[INFO] [stdout] |
[INFO] [stdout] 17 | pub mod TEMPLATE;
[INFO] [stdout] | ^^^^^^^^ help: convert the identifier to snake case: `template`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(non_snake_case)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: constant `AUTO_THEME` is never used
[INFO] [stdout] --> src/components/appcontext_provider.rs:24:11
[INFO] [stdout] |
[INFO] [stdout] 24 | pub const AUTO_THEME: Theme = Theme::Auto;
[INFO] [stdout] | ^^^^^^^^^^
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(dead_code)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: module `TEMPLATE` should have a snake case name
[INFO] [stdout] --> src/components/mod.rs:17:9
[INFO] [stdout] |
[INFO] [stdout] 17 | pub mod TEMPLATE;
[INFO] [stdout] | ^^^^^^^^ help: convert the identifier to snake case: `template`
[INFO] [stdout] |
[INFO] [stdout] = note: `#[warn(non_snake_case)]` on by default
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: 81 warnings emitted
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stdout] warning: 81 warnings emitted
[INFO] [stdout]
[INFO] [stdout]
[INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 22.96s
[INFO] [stderr] warning: the following packages contain code that will be rejected by a future version of Rust: anymap v1.0.0-beta.2
[INFO] [stderr] note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 1`
[INFO] running `Command { std: "docker" "inspect" "fd233041069c3e2a4f33c18d7d351b732bbec5bc08e7594b6f00b7b5ecf98956", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "fd233041069c3e2a4f33c18d7d351b732bbec5bc08e7594b6f00b7b5ecf98956", kill_on_drop: false }`
[INFO] [stdout] fd233041069c3e2a4f33c18d7d351b732bbec5bc08e7594b6f00b7b5ecf98956