build(deps): bump the cargo group with 3 updates #119
ci.yaml
on: pull_request
Build & Test Project
31s
Annotations
1 error and 3 warnings
Build & Test Project
reviewdog exited with status code: 1
|
Build & Test Project:
src/trigger.rs#L46
[clippy] reported by reviewdog 🐶
warning: fields `force_envs` and `deps` are never read
--> src/trigger.rs:52:5
|
46 | pub struct Trigger {
| ------- fields in this struct
...
52 | force_envs: Vec<OsEnv>,
| ^^^^^^^^^^
...
55 | deps: Vec<String>,
| ^^^^
|
= note: `Trigger` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
Raw Output:
src/trigger.rs:46:12:w:warning: fields `force_envs` and `deps` are never read
--> src/trigger.rs:52:5
|
46 | pub struct Trigger {
| ------- fields in this struct
...
52 | force_envs: Vec<OsEnv>,
| ^^^^^^^^^^
...
55 | deps: Vec<String>,
| ^^^^
|
= note: `Trigger` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
__END__
|
Build & Test Project:
src/bin/usysconf/pathtimes.rs#L8
[clippy] reported by reviewdog 🐶
warning: field `map` is never read
--> src/bin/usysconf/pathtimes.rs:9:5
|
8 | pub struct PathTimes {
| --------- field in this struct
9 | map: HashMap<Path, Mtime>,
| ^^^
|
= note: `#[warn(dead_code)]` on by default
Raw Output:
src/bin/usysconf/pathtimes.rs:8:12:w:warning: field `map` is never read
--> src/bin/usysconf/pathtimes.rs:9:5
|
8 | pub struct PathTimes {
| --------- field in this struct
9 | map: HashMap<Path, Mtime>,
| ^^^
|
= note: `#[warn(dead_code)]` on by default
__END__
|
Build & Test Project:
src/bin/usysconf/pathtimes.rs#L12
[clippy] reported by reviewdog 🐶
warning: associated items `new`, `update`, `get`, and `save` are never used
--> src/bin/usysconf/pathtimes.rs:13:12
|
12 | impl PathTimes {
| -------------- associated items in this implementation
13 | pub fn new(source: impl Read) -> Result<Self, bincode::Error> {
| ^^^
...
19 | pub fn update(&mut self, path: Path, mtime: Mtime) {
| ^^^^^^
...
23 | pub fn get(&self, path: &Path) -> Option<Mtime> {
| ^^^
...
27 | pub fn save(&mut self, writer: impl Write) -> Result<(), bincode::Error> {
| ^^^^
Raw Output:
src/bin/usysconf/pathtimes.rs:12:1:w:warning: associated items `new`, `update`, `get`, and `save` are never used
--> src/bin/usysconf/pathtimes.rs:13:12
|
12 | impl PathTimes {
| -------------- associated items in this implementation
13 | pub fn new(source: impl Read) -> Result<Self, bincode::Error> {
| ^^^
...
19 | pub fn update(&mut self, path: Path, mtime: Mtime) {
| ^^^^^^
...
23 | pub fn get(&self, path: &Path) -> Option<Mtime> {
| ^^^
...
27 | pub fn save(&mut self, writer: impl Write) -> Result<(), bincode::Error> {
| ^^^^
__END__
|