chore(dep): bump serde_json from 1.0.128 to 1.0.132 in /fuzz in the test-deps group #1343
rust.yml
on: pull_request
test-gen
/
Generate rsonpath-test cases
1m 0s
Documentation
57s
Format
22s
Dependency scan (cargo-deny)
46s
Verify MSRV (cargo-msrv)
5m 43s
Matrix: clippy
Matrix: Test all x86 SIMD configurations
Matrix: Test matrix
Annotations
10 errors and 9 warnings
the following explicit lifetimes could be elided: 'q:
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<'_> {
|
|
the following explicit lifetimes could be elided: 'q:
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<'_> {
|
|
the following explicit lifetimes could be elided: 'q:
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<'_> {
|
|
the following explicit lifetimes could be elided: 'q:
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<'_> {}
|
|
the following explicit lifetimes could be elided: 'q:
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<'_> {
|
|
the following explicit lifetimes could be elided: 'b:
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>
|
|
the following explicit lifetimes could be elided: 'q:
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>
|
|
the following explicit lifetimes could be elided: 'q:
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>
|
|
the following explicit lifetimes could be elided: 'a:
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<'_> {
|
|
the following explicit lifetimes could be elided: 'r:
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>
|
|
Test matrix (stable, x86_64-unknown-linux-gnu)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, Version: 088800c474379e94b2c5faecd696150e39e15adc593009042e737369ad081926
|
Test matrix (stable, i686-unknown-linux-gnu)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, Version: 088800c474379e94b2c5faecd696150e39e15adc593009042e737369ad081926
|
Test matrix (nightly, i686-unknown-linux-gnu)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-99ba81d3966fded56ff2, Version: 088800c474379e94b2c5faecd696150e39e15adc593009042e737369ad081926
|
Test matrix (nightly, x86_64-apple-darwin)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-ac0aef2f95efda392088, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-ac0aef2f95efda392088, Version: 185c2f916b9ce2429d36aa9f910e92471e8887f70625754c1a6469c08fc4aaf7
|
Test matrix (nightly, x86_64-pc-windows-msvc)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, Version: 783fdf4bba85379f4997a0351332d2bb074bb84791ab3a6068bb452d499ae5f5
|
Test matrix (nightly, x86_64-pc-windows-gnu)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, Version: 783fdf4bba85379f4997a0351332d2bb074bb84791ab3a6068bb452d499ae5f5
|
Test matrix (stable, x86_64-pc-windows-msvc)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, Version: 783fdf4bba85379f4997a0351332d2bb074bb84791ab3a6068bb452d499ae5f5
|
Test matrix (stable, x86_64-pc-windows-gnu)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, Version: 783fdf4bba85379f4997a0351332d2bb074bb84791ab3a6068bb452d499ae5f5
|
Test matrix (stable, i686-pc-windows-msvc)
Failed to save: Unable to reserve cache with key cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, another job may be creating this cache. More details: Cache already exists. Scope: refs/pull/547/merge, Key: cargo-install-cargo-hack-0.6.31-63054afe429676a0599d, Version: 783fdf4bba85379f4997a0351332d2bb074bb84791ab3a6068bb452d499ae5f5
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
rsonpath-test-documents
Expired
|
33.9 MB |
|