chore: do not organize bug issue into project any more #34
Annotations
2 warnings
the borrowed expression implements the required traits:
src/query/mod.rs#L305
warning: the borrowed expression implements the required traits
--> src/query/mod.rs:305:9
|
305 | &path_rocksdb,
| ^^^^^^^^^^^^^ help: change this to: `path_rocksdb`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrows_for_generic_args
= note: `#[warn(clippy::needless_borrows_for_generic_args)]` on by default
|
use of a fallible conversion when an infallible one could be used:
src/algos/phenomizer.rs#L43
warning: use of a fallible conversion when an infallible one could be used
--> src/algos/phenomizer.rs:43:24
|
43 | let len: f32 = len.try_into().expect("too many query terms for f32");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use: `into()`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
= note: `#[warn(clippy::unnecessary_fallible_conversions)]` on by default
|