Skip to content

update version to 0.0.2 (#9) #19

update version to 0.0.2 (#9)

update version to 0.0.2 (#9) #19

Triggered via push September 10, 2024 14:11
Status Success
Total duration 43s
Artifacts

clippy.yml

on: push
clippy_check
34s
clippy_check
Fit to window
Zoom out
Zoom in

Annotations

8 warnings
the loop variable `i` is only used to index `b`: src/util.rs#L8
warning: the loop variable `i` is only used to index `b` --> src/util.rs:8:14 | 8 | for i in 0..n { | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop = note: `#[warn(clippy::needless_range_loop)]` on by default help: consider using an iterator | 8 | for <item> in b.iter_mut().take(n) { | ~~~~~~ ~~~~~~~~~~~~~~~~~~~~
function `rand_str` is never used: src/util.rs#L5
warning: function `rand_str` is never used --> src/util.rs:5:8 | 5 | pub fn rand_str(n: usize) -> String { | ^^^^^^^^
constant `LETTERS` is never used: src/util.rs#L3
warning: constant `LETTERS` is never used --> src/util.rs:3:7 | 3 | const LETTERS: &[u8] = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; | ^^^^^^^ | = note: `#[warn(dead_code)]` on by default
clippy_check
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/
clippy_check
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v3, actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/
the loop variable `i` is only used to index `b`: src/util.rs#L8
warning: the loop variable `i` is only used to index `b` --> src/util.rs:8:14 | 8 | for i in 0..n { | ^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_range_loop = note: `#[warn(clippy::needless_range_loop)]` on by default help: consider using an iterator | 8 | for <item> in b.iter_mut().take(n) { | ~~~~~~ ~~~~~~~~~~~~~~~~~~~~
function `rand_str` is never used: src/util.rs#L5
warning: function `rand_str` is never used --> src/util.rs:5:8 | 5 | pub fn rand_str(n: usize) -> String { | ^^^^^^^^
constant `LETTERS` is never used: src/util.rs#L3
warning: constant `LETTERS` is never used --> src/util.rs:3:7 | 3 | const LETTERS: &[u8] = b"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; | ^^^^^^^ | = note: `#[warn(dead_code)]` on by default