Merge pull request #74 from bacpop/Adding_max_frequence_reads_parameter #230
Annotations
5 warnings
assigning the result of `Clone::clone()` may be inefficient:
src/ska_ref.rs#L314
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/ska_ref.rs:314:9
|
314 | self.mapped_names = ska_dict.names().clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `self.mapped_names.clone_from(ska_dict.names())`
|
= 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/merge_ska_dict.rs#L85
warning: assigning the result of `Clone::clone()` may be inefficient
--> src/merge_ska_dict.rs:85:9
|
85 | self.names[other.idx()] = other.name().clone();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use `clone_from()`: `self.names[other.idx()].clone_from(other.name())`
|
= 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
|
Rust project - latest (beta)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Rust project - latest (stable)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
Rust project - latest (nightly)
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|