GitHub Actions / clippy-all-features
failed
Sep 5, 2024 in 0s
clippy-all-features
2 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 2 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.81.0 (eeb90cda1 2024-09-04)
- cargo 1.81.0 (2dbb1af80 2024-08-20)
- clippy 0.1.81 (eeb90cd 2024-09-04)
Annotations
Check failure on line 109 in crates/relayer/src/config.rs
github-actions / clippy-all-features
this manual char comparison can be written more succinctly
error: this manual char comparison can be written more succinctly
--> crates/relayer/src/config.rs:109:16
|
109 | .split(|c| c == ',' || c == ';')
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using an array of `char`: `[',', ';']`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_pattern_char_comparison
= note: `-D clippy::manual-pattern-char-comparison` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_pattern_char_comparison)]`
Check failure on line 109 in crates/relayer/src/config.rs
github-actions / clippy-all-features
this manual char comparison can be written more succinctly
error: this manual char comparison can be written more succinctly
--> crates/relayer/src/config.rs:109:16
|
109 | .split(|c| c == ',' || c == ';')
| ^^^^^^^^^^^^^^^^^^^^^^^^ help: consider using an array of `char`: `[',', ';']`
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#manual_pattern_char_comparison
= note: `-D clippy::manual-pattern-char-comparison` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::manual_pattern_char_comparison)]`
Loading