build(deps): bump indexmap from 2.2.3 to 2.2.6 (#438) #236
Annotations
8 warnings
release-please
Unexpected input(s) 'package-name', valid inputs are ['token', 'release-type', 'path', 'target-branch', 'config-file', 'manifest-file', 'repo-url', 'github-api-url', 'github-graphql-url', 'fork', 'include-component-in-tag', 'proxy-server', 'skip-github-release', 'skip-github-pull-request', 'changelog-host']
|
assigning the result of `Clone::clone()` may be inefficient:
src/tsv/coding.rs#L260
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/tsv/coding.rs:260:21
|
260 | res.alternative = alternative.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `res.alternative.clone_from(alternative)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
|
assigning the result of `Clone::clone()` may be inefficient:
src/tsv/coding.rs#L251
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/tsv/coding.rs:251:21
|
251 | res.reference = reference.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `res.reference.clone_from(reference)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
|
assigning the result of `Clone::clone()` may be inefficient:
src/tsv/coding.rs#L224
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/tsv/coding.rs:224:21
|
224 | res.chrom = chrom.clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `res.chrom.clone_from(chrom)`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#assigning_clones
= note: `#[warn(clippy::assigning_clones)]` on by default
|
direct implementation of `ToString`:
src/gnomad_sv/cli/import/gnomad_sv4.rs#L66
warning: direct implementation of `ToString`
--> src/gnomad_sv/cli/import/gnomad_sv4.rs:66:1
|
66 | / impl ToString for Population {
67 | | fn to_string(&self) -> String {
68 | | match self {
69 | | Population::Afr => "AFR",
... |
82 | | }
83 | | }
| |_^
|
= help: prefer implementing `Display` instead
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_trait_impl
|
direct implementation of `ToString`:
src/gnomad_sv/cli/import/gnomad_sv2.rs#L51
warning: direct implementation of `ToString`
--> src/gnomad_sv/cli/import/gnomad_sv2.rs:51:1
|
51 | / impl ToString for Population {
52 | | fn to_string(&self) -> String {
53 | | match self {
54 | | Population::Afr => "AFR",
... |
62 | | }
63 | | }
| |_^
|
= help: prefer implementing `Display` instead
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_trait_impl
|
direct implementation of `ToString`:
src/gnomad_sv/cli/import/gnomad_cnv4.rs#L48
warning: direct implementation of `ToString`
--> src/gnomad_sv/cli/import/gnomad_cnv4.rs:48:1
|
48 | / impl ToString for Population {
49 | | fn to_string(&self) -> String {
50 | | match self {
51 | | Population::Afr => "AFR".to_string(),
... |
61 | | }
62 | | }
| |_^
|
= help: prefer implementing `Display` instead
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#to_string_trait_impl
= note: `#[warn(clippy::to_string_trait_impl)]` on by default
|
struct `ResultEntry` is never constructed:
src/server/actix_server/annos_db_info.rs#L25
warning: struct `ResultEntry` is never constructed
--> src/server/actix_server/annos_db_info.rs:25:8
|
25 | struct ResultEntry {
| ^^^^^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
|