add json path constructor to term (#2367) #3415
Annotations
1 error and 2 warnings
coverage
Codecov: Failed to properly upload: The process '/home/runner/work/_actions/codecov/codecov-action/v3/dist/codecov' failed with exit code 255
|
dereferencing a tuple pattern where every element takes a reference:
src/schema/document/owned_value.rs#L186
warning: dereferencing a tuple pattern where every element takes a reference
--> src/schema/document/owned_value.rs:186:21
|
186 | for &(ref k, ref v) in obj {
| ^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference
= note: `#[warn(clippy::needless_borrowed_reference)]` on by default
help: try removing the `&` and `ref` parts
|
186 - for &(ref k, ref v) in obj {
186 + for (k, v) in obj {
|
|
coverage
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: codecov/codecov-action@v3. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|