Skip to content

chore(main): release 0.21.2 #4

chore(main): release 0.21.2

chore(main): release 0.21.2 #4

Triggered via pull request February 1, 2024 07:00
Status Success
Total duration 13s
Artifacts

add-pr-to-project.yml

on: pull_request
Add pull request to project
3s
Add pull request to project
Fit to window
Zoom out
Zoom in

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