chore: Release #14
This workflow graph cannot be shown
A graph will be generated the next time this workflow is run.
Annotations
3 errors
|
Invalid workflow file:
.github/workflows/publish-crates.yaml#L1
(Line: 19, Col: 14): Unrecognized named-value: 'gihub'. Located at position 1 within expression: gihub.ref_name, (Line: 38, Col: 14): Unrecognized named-value: 'gihub'. Located at position 1 within expression: gihub.ref_name
|
|
these match arms have identical bodies:
src/impls.rs#L86
error: these match arms have identical bodies
--> src/impls.rs:86:17
|
86 | Some(simd_json::Node::String("Err")) => Ok(Err(TErr::from_tape(tape)?)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
87 | Some(simd_json::Node::String("ok")) => Ok(Ok(TOk::from_tape(tape)?)),
88 | Some(simd_json::Node::String("err")) => Ok(Err(TErr::from_tape(tape)?)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: if this is unintentional make the arms return different values
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
help: otherwise merge the patterns into a single arm
|
86 ~ Some(simd_json::Node::String("Err")) | Some(simd_json::Node::String("err")) => Ok(Err(TErr::from_tape(tape)?)),
87 | Some(simd_json::Node::String("ok")) => Ok(Ok(TOk::from_tape(tape)?)),
88 ~ _ => Err(de::Error::custom("result not `Ok` or `Err`")),
|
|
|
these match arms have identical bodies:
src/impls.rs#L85
error: these match arms have identical bodies
--> src/impls.rs:85:17
|
85 | Some(simd_json::Node::String("Ok")) => Ok(Ok(TOk::from_tape(tape)?)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
86 | Some(simd_json::Node::String("Err")) => Ok(Err(TErr::from_tape(tape)?)),
87 | Some(simd_json::Node::String("ok")) => Ok(Ok(TOk::from_tape(tape)?)),
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= help: if this is unintentional make the arms return different values
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#match_same_arms
note: the lint level is defined here
--> src/lib.rs:6:5
|
6 | clippy::pedantic,
| ^^^^^^^^^^^^^^^^
= note: `#[deny(clippy::match_same_arms)]` implied by `#[deny(clippy::pedantic)]`
help: otherwise merge the patterns into a single arm
|
85 ~ Some(simd_json::Node::String("Err")) => Ok(Err(TErr::from_tape(tape)?)),
86 ~ Some(simd_json::Node::String("Ok")) | Some(simd_json::Node::String("ok")) => Ok(Ok(TOk::from_tape(tape)?)),
|
|