Skip to content

Bump thiserror from 1.0.51 to 1.0.52 (#212) #448

Bump thiserror from 1.0.51 to 1.0.52 (#212)

Bump thiserror from 1.0.51 to 1.0.52 (#212) #448

Triggered via push December 26, 2023 14:40
Status Success
Total duration 1m 18s
Artifacts

rust.yml

on: push
Fit to window
Zoom out
Zoom in

Annotations

2 warnings
question mark operator is useless here: bluez-async/src/serde_path.rs#L14
warning: question mark operator is useless here --> bluez-async/src/serde_path.rs:14:5 | 14 | Ok(Path::new(string).map_err(|e| D::Error::custom(format!("Invalid D-Bus path: {:?}", e)))?) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: try removing question mark and `Ok()`: `Path::new(string).map_err(|e| D::Error::custom(format!("Invalid D-Bus path: {:?}", e)))` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_question_mark = note: `#[warn(clippy::needless_question_mark)]` on by default
build
The following actions uses node12 which is deprecated and will be forced to run on node16: actions-rs/clippy-check@v1. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/