dep: bump the deps group across 1 directory with 7 updates #1462
Annotations
2 errors and 2 warnings
Clippy all features:
crates/rsonpath-lib/src/lib.rs#L301
error: this `map_or` can be simplified
--> crates/rsonpath-lib/src/input/padding.rs:301:67
|
301 | middle_self == middle_other && last_self == last_other && preceding_char.map_or(true, |x| x != b'\\')
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use a standard comparison instead: `(preceding_char != Some(b'\\'))`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
= note: `-D clippy::unnecessary-map-or` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::unnecessary_map_or)]`
|
Clippy all features:
crates/rsonpath-lib/src/lib.rs#L518
error: this `map_or` can be simplified
--> crates/rsonpath-lib/src/input/padding.rs:518:16
|
518 | && preceding_char.map_or(true, |x| x != b'\\')
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use a standard comparison instead: `(preceding_char != Some(b'\\'))`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or
|
ubuntu-latest pipelines will use ubuntu-24.04 soon. For more details, see https://github.com/actions/runner-images/issues/10636
|
Clippy all features
The `deny` input is deprecated in v1.4 and can be used within the `check-args` input
|
Loading