v0.21.3 #43
Annotations
4 warnings
security_audit
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions-rs/audit-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/
|
security_audit
The following actions use a deprecated Node.js version and will be forced to run on node20: actions/checkout@v2, actions-rs/audit-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/
|
current MSRV (Minimum Supported Rust Version) is `1.60.0` but this item is stable since `1.74.0`:
src/lib.rs#L74
warning: current MSRV (Minimum Supported Rust Version) is `1.60.0` but this item is stable since `1.74.0`
--> src/lib.rs:74:24
|
74 | return Err(io::Error::other(err));
| ^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#incompatible_msrv
= note: `-W clippy::incompatible-msrv` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::incompatible_msrv)]`
|
called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable:
src/lib.rs#L60
warning: called `iter().cloned().collect()` on a slice to create a `Vec`. Calling `to_vec()` is both faster and more readable
--> src/lib.rs:60:50
|
60 | roots: webpki_roots::TLS_SERVER_ROOTS.iter().cloned().collect(),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try: `.to_vec()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#iter_cloned_collect
= note: `-W clippy::iter-cloned-collect` implied by `-W clippy::all`
= help: to override `-W clippy::all` add `#[allow(clippy::iter_cloned_collect)]`
|