Skip to content

Bug fixes

Bug fixes #740

Triggered via pull request August 2, 2023 21:10
@thesuzerainthesuzerain
synchronize #406
bug-fixes
Status Success
Total duration 7m 23s
Artifacts

cli-build.yml

on: pull_request
Fit to window
Zoom out
Zoom in

Annotations

4 warnings
single-character string constant used as pattern: theseus/src/api/profile/mod.rs#L1037
warning: single-character string constant used as pattern --> theseus/src/api/profile/mod.rs:1037:19 | 1037 | input.replace(r"/", "_") | ^^^^ help: try using a `char` instead: `'/'` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern
single-character string constant used as pattern: theseus/src/api/profile/mod.rs#L1038
warning: single-character string constant used as pattern --> theseus/src/api/profile/mod.rs:1038:14 | 1038 | .replace(r"\", "_") | ^^^^ help: try using a `char` instead: `'\\'` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#single_char_pattern = note: `#[warn(clippy::single_char_pattern)]` on by default
variable does not need to be mutable: theseus/src/state/projects.rs#L168
warning: variable does not need to be mutable --> theseus/src/state/projects.rs:168:13 | 168 | let mut dep = self; | ----^^^ | | | help: remove this `mut` | = note: `#[warn(unused_mut)]` on by default
build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/cargo@v1, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/