Skip to content

chore: do not organize bug issue into project any more #34

chore: do not organize bug issue into project any more

chore: do not organize bug issue into project any more #34

Triggered via push January 24, 2024 14:38
Status Skipped
Total duration 5s
Artifacts
release-please
0s
release-please
cargo-release
0s
cargo-release
container-release
0s
container-release
Fit to window
Zoom out
Zoom in

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