Avoid new lints in 1.81.0 #89
Annotations
10 warnings
Clippy
clippy-action doesn't have permissions to create Check Runs, disabling!
|
Clippy
Resource not accessible by integration - https://docs.github.com/rest/checks/runs#create-a-check-run
|
Clippy:
src/lib.rs#L1295
warning: unknown lint: `clippy::arc_with_non_send_sync`
--> src/lib.rs:1295:19
|
1295 | allow(clippy::arc_with_non_send_sync)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unknown_lints)]` on by default
|
Clippy:
src/lib.rs#L1295
warning: unknown lint: `clippy::arc_with_non_send_sync`
--> src/lib.rs:1295:19
|
1295 | allow(clippy::arc_with_non_send_sync)
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: `#[warn(unknown_lints)]` on by default
|
Clippy
warning: 1 warning emitted
|
Clippy:
examples/singlethread.rs#L22
warning: redundant clone
--> examples/singlethread.rs:22:19
|
22 | let obj2 = obj.clone();
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> examples/singlethread.rs:22:16
|
22 | let obj2 = obj.clone();
| ^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
= note: `#[warn(clippy::redundant_clone)]` on by default
|
Clippy
warning: 1 warning emitted
|
Clippy:
src/lib.rs#L2423
warning: used import from `std` instead of `alloc`
--> src/lib.rs:2423:8
|
2423 | T: std::string::ToString + FromStr + PartialEq + fmt::Debug,
| ^^^^^^^^^^^^^^^^^^^^^
|
= help: consider importing the item from `alloc`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc
note: the lint level is defined here
--> src/lib.rs:286:5
|
286 | clippy::std_instead_of_alloc,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
Clippy:
src/lib.rs#L37
warning: used import from `std` instead of `core`
--> src/tests.rs:37:14
|
37 | ) -> std::result::Result<Self::Ok, Self::Err> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider importing the item from `core`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_core
note: the lint level is defined here
--> src/lib.rs:285:5
|
285 | clippy::std_instead_of_core,
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
Clippy:
src/lib.rs#L69
warning: used import from `std` instead of `alloc`
--> src/tests.rs:69:26
|
69 | struct TestError<E = std::string::ParseError>(&'static str, Option<E>);
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= help: consider importing the item from `alloc`
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#std_instead_of_alloc
|
Loading