Bump toml_edit from 0.22.12 to 0.22.13 (#131) #275
Annotations
10 warnings
unnecessary use of `get("std").is_some()`:
src/analyzer.rs#L125
warning: unnecessary use of `get("std").is_some()`
--> src/analyzer.rs:125:39
|
125 | let has_std_feat = package.features.get("std").is_some();
| ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("std")`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check
= note: `#[warn(clippy::unnecessary_get_then_check)]` on by default
|
unnecessary use of `get("std").is_some()`:
src/analyzer.rs#L125
warning: unnecessary use of `get("std").is_some()`
--> src/analyzer.rs:125:39
|
125 | let has_std_feat = package.features.get("std").is_some();
| ^^^^^^^^^^^^^^^^^^^^ help: replace it with: `contains_key("std")`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_get_then_check
= note: `#[warn(clippy::unnecessary_get_then_check)]` on by default
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/test.rs#L107
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/test.rs:107:24
|
107 | let mut d = s.parse::<Document>().unwrap();
| ^^^^^^^^
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/test.rs#L4
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/test.rs:4:38
|
4 | use toml_edit::{visit_mut::VisitMut, Document};
| ^^^^^^^^
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/resolver.rs#L58
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/resolver.rs:58:25
|
58 | let mut d = s.parse::<Document>()?;
| ^^^^^^^^
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/resolver.rs#L12
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/resolver.rs:12:38
|
12 | use toml_edit::{visit_mut::VisitMut, Document, Value};
| ^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/resolver.rs#L58
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/resolver.rs:58:25
|
58 | let mut d = s.parse::<Document>()?;
| ^^^^^^^^
|
use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`:
src/resolver.rs#L12
warning: use of deprecated type alias `toml_edit::Document`: Replaced with `DocumentMut`
--> src/resolver.rs:12:38
|
12 | use toml_edit::{visit_mut::VisitMut, Document, Value};
| ^^^^^^^^
|
= note: `#[warn(deprecated)]` on by default
|
Task cargo clippy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions-rs/clippy-check@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Task cargo clippy
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/
|