Bump mio from 0.8.4 to 0.8.11 in /example (#723) #1410
Annotations
10 warnings
deploy
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: peaceiris/actions-mdbook@v1. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
field `0` is never read:
lib/core/src/error/mod.rs#L37
warning: field `0` is never read
--> lib/core/src/error/mod.rs:37:18
|
37 | pub struct Quick(String);
| ----- ^^^^^^
| |
| field in this struct
|
= note: `Quick` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
37 | pub struct Quick(());
| ~~
|
field `0` is never read:
lib/core/src/error/mod.rs#L37
warning: field `0` is never read
--> lib/core/src/error/mod.rs:37:18
|
37 | pub struct Quick(String);
| ----- ^^^^^^
| |
| field in this struct
|
= note: `Quick` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
37 | pub struct Quick(());
| ~~
|
the item `PathBuf` is imported redundantly:
lib/core/src/system/test.rs#L2
warning: the item `PathBuf` is imported redundantly
--> lib/core/src/system/test.rs:2:5
|
2 | use std::path::PathBuf;
| ^^^^^^^^^^^^^^^^^^
3 | // subalfred
4 | use super::*;
| -------- the item `PathBuf` is already imported here
|
the item `Arc` is imported redundantly:
lib/core/src/jsonrpc/ws/mod.rs#L5
warning: the item `Arc` is imported redundantly
--> lib/core/src/jsonrpc/ws/mod.rs:5:16
|
5 | use std::{str, sync::Arc, time::Duration};
| ^^^^^^^^^
...
22 | use super::*;
| -------- the item `Arc` is already imported here
|
the item `Serialize` is imported redundantly:
lib/core/src/jsonrpc/http/mod.rs#L8
warning: the item `Serialize` is imported redundantly
--> lib/core/src/jsonrpc/http/mod.rs:8:35
|
8 | use serde::{de::DeserializeOwned, Serialize};
| ^^^^^^^^^
9 | // subalfred
10 | use super::*;
| -------- the item `Serialize` is already imported here
|
= note: `#[warn(unused_imports)]` on by default
|
the item `Arc` is imported redundantly:
lib/core/src/jsonrpc/ws/mod.rs#L5
warning: the item `Arc` is imported redundantly
--> lib/core/src/jsonrpc/ws/mod.rs:5:16
|
5 | use std::{str, sync::Arc, time::Duration};
| ^^^^^^^^^
...
22 | use super::*;
| -------- the item `Arc` is already imported here
|
the item `Serialize` is imported redundantly:
lib/core/src/jsonrpc/http/mod.rs#L8
warning: the item `Serialize` is imported redundantly
--> lib/core/src/jsonrpc/http/mod.rs:8:35
|
8 | use serde::{de::DeserializeOwned, Serialize};
| ^^^^^^^^^
9 | // subalfred
10 | use super::*;
| -------- the item `Serialize` is already imported here
|
the item `MetadataCommand` is imported redundantly:
lib/core/src/cargo/test.rs#L2
warning: the item `MetadataCommand` is imported redundantly
--> lib/core/src/cargo/test.rs:2:32
|
2 | use cargo_metadata::{Metadata, MetadataCommand};
| ^^^^^^^^^^^^^^^
3 | // subalfred
4 | use super::{test_data::*, *};
| - the item `MetadataCommand` is already imported here
|
the item `Metadata` is imported redundantly:
lib/core/src/cargo/test.rs#L2
warning: the item `Metadata` is imported redundantly
--> lib/core/src/cargo/test.rs:2:22
|
2 | use cargo_metadata::{Metadata, MetadataCommand};
| ^^^^^^^^
3 | // subalfred
4 | use super::{test_data::*, *};
| - the item `Metadata` is already imported here
|
= note: `#[warn(unused_imports)]` on by default
|