Skip to content

chore(deps): Bump uuid from 1.3.4 to 1.5.0 #810

chore(deps): Bump uuid from 1.3.4 to 1.5.0

chore(deps): Bump uuid from 1.3.4 to 1.5.0 #810

Triggered via push November 13, 2023 06:55
Status Success
Total duration 18s
Artifacts

reuse-lint.yaml

on: push
Fit to window
Zoom out
Zoom in

Annotations

3 errors
use of a fallible conversion when an infallible one could be used: src/astarte_device_sdk_types.rs#L427
error: use of a fallible conversion when an infallible one could be used --> src/astarte_device_sdk_types.rs:427:59 | 427 | payload: Some(Payload::AstarteData(object_map.try_into().unwrap())), | ^^^^^^^^^^^^^^^^^^^ help: use: `into()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
use of a fallible conversion when an infallible one could be used: src/astarte_device_sdk_types.rs#L421
error: use of a fallible conversion when an infallible one could be used --> src/astarte_device_sdk_types.rs:421:62 | 421 | object_map.insert("2".to_string(), expected_data_i32.try_into().unwrap()); | ^^^^^^^^^^^^^^^^^^^ help: use: `into()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions
use of a fallible conversion when an infallible one could be used: src/astarte_device_sdk_types.rs#L420
error: use of a fallible conversion when an infallible one could be used --> src/astarte_device_sdk_types.rs:420:62 | 420 | object_map.insert("1".to_string(), expected_data_f64.try_into().unwrap()); | ^^^^^^^^^^^^^^^^^^^ help: use: `into()` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_fallible_conversions = note: `-D clippy::unnecessary-fallible-conversions` implied by `-D warnings` = help: to override `-D warnings` add `#[allow(clippy::unnecessary_fallible_conversions)]`