ci: check domain taken down #270
Open
Annotations
1 error and 10 warnings
|
|
|
sources/vi.hakovn/src/lib.rs#L210
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> src/lib.rs:210:61
|
210 | let chapter_number = extract_f32_from_string(&title, &chapter_title)
| ^^^^^^^^^^^^^^ help: change this to: `chapter_title`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_borrow
|
|
sources/vi.hakovn/src/lib.rs#L210
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> src/lib.rs:210:53
|
210 | let chapter_number = extract_f32_from_string(&title, &chapter_title)
| ^^^^^^ help: change this to: `title`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_borrow
|
|
sources/vi.hakovn/src/lib.rs#L210
warning: you are using an explicit closure for copying elements
--> src/lib.rs:210:29
|
210 | let chapter_number = extract_f32_from_string(&title, &chapter_title)
| __________________________________________________^
211 | | .first()
212 | | .map(|v| *v)
| |____________________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#map_clone
help: consider calling the dedicated `copied` method
|
210 ~ let chapter_number = extract_f32_from_string(&title, &chapter_title)
211 ~ .first().copied()
|
|
|
sources/vi.hakovn/src/lib.rs#L180
warning: this expression creates a reference which is immediately dereferenced by the compiler
--> src/lib.rs:180:30
|
180 | extract_f32_from_string(&title, &volume_title)
| ^^^^^^ help: change this to: `title`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#needless_borrow
= note: `#[warn(clippy::needless_borrow)]` on by default
|
|
sources/vi.hakovn/src/lib.rs#L180
warning: you are using an explicit closure for copying elements
--> src/lib.rs:180:6
|
180 | / extract_f32_from_string(&title, &volume_title)
181 | | .first()
182 | | .map(|v| *v)
| |____________________________________^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#map_clone
= note: `#[warn(clippy::map_clone)]` on by default
help: consider calling the dedicated `copied` method
|
180 ~ extract_f32_from_string(&title, &volume_title)
181 ~ .first().copied()
|
|
|
sources/vi.hakovn/src/lib.rs#L169
warning: this `let...else` may be rewritten with the `?` operator
--> src/lib.rs:169:5
|
169 | / let Some(chapters_iter) = volume_node.select(".list-chapters > li") else {
170 | | return None;
171 | | };
| |__________________^ help: replace it with: `let chapters_iter = volume_node.select(".list-chapters > li")?;`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/rust-1.92.0/index.html#question_mark
= note: `#[warn(clippy::question_mark)]` on by default
|
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
|
The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
|
The logs for this run have expired and are no longer available.
Loading