chore(dep): bump proc-macro2 from 1.0.86 to 1.0.88 in /crates/rsonpath-test-codegen in the test-deps group across 1 directory #1344
Annotations
10 errors
crates/rsonpath-lib/src/lib.rs#L146
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/automaton/nfa.rs:146:6
|
146 | impl<'q> Display for NondeterministicAutomaton<'q> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
= note: `-D clippy::needless-lifetimes` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::needless_lifetimes)]`
help: elide the lifetimes
|
146 - impl<'q> Display for NondeterministicAutomaton<'q> {
146 + impl Display for NondeterministicAutomaton<'_> {
|
|
crates/rsonpath-lib/src/lib.rs#L62
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/automaton.rs:62:6
|
62 | impl<'q> Default for StateTable<'q> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
62 - impl<'q> Default for StateTable<'q> {
62 + impl Default for StateTable<'_> {
|
|
crates/rsonpath-lib/src/lib.rs#L74
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/automaton.rs:74:6
|
74 | impl<'q> PartialEq for StateTable<'q> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
74 - impl<'q> PartialEq for StateTable<'q> {
74 + impl PartialEq for StateTable<'_> {
|
|
crates/rsonpath-lib/src/lib.rs#L91
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/automaton.rs:91:6
|
91 | impl<'q> Eq for StateTable<'q> {}
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
91 - impl<'q> Eq for StateTable<'q> {}
91 + impl Eq for StateTable<'_> {}
|
|
crates/rsonpath-lib/src/lib.rs#L445
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/automaton.rs:445:6
|
445 | impl<'q> Display for Automaton<'q> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
445 - impl<'q> Display for Automaton<'q> {
445 + impl Display for Automaton<'_> {
|
|
crates/rsonpath-lib/src/lib.rs#L36
error: the following explicit lifetimes could be elided: 'b
--> crates/rsonpath-lib/src/classification/memmem/nosimd.rs:36:10
|
36 | impl<'i, 'b, 'r, I, R, const N: usize> SequentialMemmemClassifier<'i, 'b, 'r, I, R, N>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
36 - impl<'i, 'b, 'r, I, R, const N: usize> SequentialMemmemClassifier<'i, 'b, 'r, I, R, N>
36 + impl<'i, 'r, I, R, const N: usize> SequentialMemmemClassifier<'i, '_, 'r, I, R, N>
|
|
crates/rsonpath-lib/src/lib.rs#L261
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/engine/main.rs:261:10
|
261 | impl<'i, 'q, 'r, I, R, V> Executor<'i, 'q, 'r, I, R, V>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
261 - impl<'i, 'q, 'r, I, R, V> Executor<'i, 'q, 'r, I, R, V>
261 + impl<'i, 'r, I, R, V> Executor<'i, '_, 'r, I, R, V>
|
|
crates/rsonpath-lib/src/lib.rs#L754
error: the following explicit lifetimes could be elided: 'q
--> crates/rsonpath-lib/src/engine/main.rs:754:10
|
754 | impl<'i, 'q, 'r, I, R, V> CanHeadSkip<'i, 'r, I, R, V> for Executor<'i, 'q, 'r, I, R, V>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
754 - impl<'i, 'q, 'r, I, R, V> CanHeadSkip<'i, 'r, I, R, V> for Executor<'i, 'q, 'r, I, R, V>
754 + impl<'i, 'r, I, R, V> CanHeadSkip<'i, 'r, I, R, V> for Executor<'i, '_, 'r, I, R, V>
|
|
crates/rsonpath-lib/src/lib.rs#L91
error: the following explicit lifetimes could be elided: 'a
--> crates/rsonpath-lib/src/input/borrowed.rs:91:6
|
91 | impl<'a> Input for BorrowedBytes<'a> {
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
91 - impl<'a> Input for BorrowedBytes<'a> {
91 + impl Input for BorrowedBytes<'_> {
|
|
crates/rsonpath-lib/src/lib.rs#L232
error: the following explicit lifetimes could be elided: 'r
--> crates/rsonpath-lib/src/input/buffered.rs:232:10
|
232 | impl<'a, 'r, R: Read, IR, const N: usize> InputBlockIterator<'a, N> for BufferedInputBlockIterator<'a, 'r, R, IR, N>
| ^^ ^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_lifetimes
help: elide the lifetimes
|
232 - impl<'a, 'r, R: Read, IR, const N: usize> InputBlockIterator<'a, N> for BufferedInputBlockIterator<'a, 'r, R, IR, N>
232 + impl<'a, R: Read, IR, const N: usize> InputBlockIterator<'a, N> for BufferedInputBlockIterator<'a, '_, R, IR, N>
|
|
The logs for this run have expired and are no longer available.
Loading