Update dependencies #719
Annotations
3 warnings
redundant guard:
src/update.rs#L130
warning: redundant guard
--> src/update.rs:130:42
|
130 | Some((sha256_hash, file)) if file == "fp" => Some(sha256_hash.to_owned()),
| ^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_guards
= note: `#[warn(clippy::redundant_guards)]` on by default
help: try
|
130 - Some((sha256_hash, file)) if file == "fp" => Some(sha256_hash.to_owned()),
130 + Some((sha256_hash, "fp")) => Some(sha256_hash.to_owned()),
|
|
use of `unwrap_or_else` to construct default value:
src/notebooks.rs#L191
warning: use of `unwrap_or_else` to construct default value
--> src/notebooks.rs:191:45
|
191 | .front_matter(args.front_matter.unwrap_or_else(FrontMatter::new))
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `unwrap_or_default()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unwrap_or_default
= note: `#[warn(clippy::unwrap_or_default)]` on by default
|
build
The following actions uses node12 which is deprecated and will be forced to run on node16: 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/
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
fp
Expired
|
37.2 MB |
|
manifest.json
Expired
|
482 Bytes |
|