Bump reqwest from 0.12.8 to 0.12.9 #205
Annotations
3 errors
Run clechasseur/rs-clippy-check@v3:
crates/cli/src/project.rs#L26
error: field `mod_info_path` is never read
--> crates/cli/src/project.rs:26:9
|
14 | pub struct Project {
| ------- field in this struct
...
26 | pub mod_info_path: PathBuf,
| ^^^^^^^^^^^^^
|
= note: `Project` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `-D dead-code` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(dead_code)]`
|
Run clechasseur/rs-clippy-check@v3:
crates/cli/src/lib.rs#L56
error: match can be simplified with `.unwrap_or_default()`
--> crates/cli/src/lib.rs:56:55
|
56 | let level_filter = level_filter.unwrap_or_else(|| match config.log_level_filter {
| _______________________________________________________^
57 | | Some(f) => f,
58 | | None => Default::default(),
59 | | });
| |_____^ help: replace it with: `config.log_level_filter.unwrap_or_default()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_unwrap_or_default
= note: `-D clippy::manual-unwrap-or-default` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_unwrap_or_default)]`
|
Run clechasseur/rs-clippy-check@v3
Clippy has exited with exit code 101
|
Loading