Skip to content

update readme to v0.2-dev #180

update readme to v0.2-dev

update readme to v0.2-dev #180

Triggered via push November 26, 2023 14:33
Status Success
Total duration 2m 40s
Artifacts

checks.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
usage of `Iterator::fold` on a type that implements `Try`: src/config/network.rs#L124
warning: usage of `Iterator::fold` on a type that implements `Try` --> src/config/network.rs:124:18 | 124 | .fold( | __________________^ 125 | | Some(*h), 126 | | |current_exchange, (next_exchange, next_amount)| { 127 | | if next_amount > current_amount_out { ... | 133 | | }, 134 | | ) | |_________________^ help: use `try_fold` instead: `try_fold(*h, |current_exchange, (next_exchange, next_amount)| ...)` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_try_fold = note: `#[warn(clippy::manual_try_fold)]` 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/