chore(main): release 0.21.2 #4
add-pr-to-project.yml
on: pull_request
Add pull request to project
3s
Annotations
3 warnings
Add pull request to project
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/add-to-project@v0.5.0. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
use of a fallible conversion when an infallible one could be used:
src/annotate/strucvars/maelstrom.rs#L114
warning: use of a fallible conversion when an infallible one could be used
--> src/annotate/strucvars/maelstrom.rs:114:48
|
114 | let window_size: f64 = window_size.try_into()?;
| ^^^^^^^^ help: use: `into`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
|
use of a fallible conversion when an infallible one could be used:
src/annotate/strucvars/maelstrom.rs#L112
warning: use of a fallible conversion when an infallible one could be used
--> src/annotate/strucvars/maelstrom.rs:112:40
|
112 | let covered: f64 = covered.try_into()?;
| ^^^^^^^^ help: use: `into`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|