CRLF count modification for location data #3161
clippy
9 errors
Details
Results
Message level | Amount |
---|---|
Internal compiler error | 0 |
Error | 9 |
Warning | 0 |
Note | 0 |
Help | 0 |
Versions
- rustc 1.84.1 (e71f9a9a9 2025-01-27)
- cargo 1.84.1 (66221abde 2024-11-19)
- clippy 0.1.84 (e71f9a9a98 2025-01-27)
Annotations
Check failure on line 230 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:230:16
|
230 | _kind: ErrorKind,
| ^^^^^^^^^
Check failure on line 220 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:220:63
|
220 | fn from_error_kind(input: &TextBuffer<'data>, error_kind: ErrorKind) -> Self {
| ^^^^^^^^^
Check failure on line 204 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:204:54
|
204 | fn from((input, error_kind): (TextBuffer<'data>, ErrorKind)) -> Self {
| ^^^^^^^^^
Check failure on line 90 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:90:65
|
90 | pub(crate) fn with_nom_error_kind(mut self, nom_error_kind: ErrorKind) -> Self {
| ^^^^^^^^^
Check failure on line 203 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:203:38
|
203 | impl<'data> From<(TextBuffer<'data>, ErrorKind)> for IonParseError<'data> {
| ^^^^^^^^^
Check failure on line 63 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:63:28
|
63 | nom_error_kind: Option<ErrorKind>,
| ^^^^^^^^^
Check failure on line 32 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated type alias `winnow::PResult`: Replaced with ModalResult
error: use of deprecated type alias `winnow::PResult`: Replaced with ModalResult
--> src/lazy/text/parse_result.rs:32:41
|
32 | pub(crate) type IonParseResult<'a, O> = PResult<O, IonParseError<'a>>;
| ^^^^^^^
Check failure on line 12 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated type alias `winnow::PResult`: Replaced with ModalResult
error: use of deprecated type alias `winnow::PResult`: Replaced with ModalResult
--> src/lazy/text/parse_result.rs:12:13
|
12 | use winnow::PResult;
| ^^^^^^^
Check failure on line 10 in src/lazy/text/parse_result.rs
github-actions / clippy
use of deprecated enum `winnow::error::ErrorKind`
error: use of deprecated enum `winnow::error::ErrorKind`
--> src/lazy/text/parse_result.rs:10:30
|
10 | use winnow::error::{ErrMode, ErrorKind, ParseError, ParserError};
| ^^^^^^^^^
|
= note: `-D deprecated` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(deprecated)]`