Annotations
6 errors and 2 warnings
test
Process completed with exit code 101.
|
mismatched types:
src/parser/parse_from_text/text_elements.rs#L265
error[E0308]: mismatched types
--> src/parser/parse_from_text/text_elements.rs:265:17
|
265 | tag
| ^^^ expected `&str`, found `(&str, Element<'_>)`
|
= note: expected reference `&str`
found tuple `(&str, parser::Element<'_>)`
|
cannot find function `is_not` in this scope:
src/parser/parse_from_text/text_elements.rs#L259
error[E0425]: cannot find function `is_not` in this scope
--> src/parser/parse_from_text/text_elements.rs:259:45
|
259 | let (input, tag) = delimited(char('('), is_not("("), char(')'))(input)?;
| ^^^^^^ not found in this scope
|
help: consider importing one of these items
|
1 + use nom::bytes::complete::is_not;
|
1 + use nom::bytes::streaming::is_not;
|
|
cannot find function `delimited` in this scope:
src/parser/parse_from_text/text_elements.rs#L259
error[E0425]: cannot find function `delimited` in this scope
--> src/parser/parse_from_text/text_elements.rs:259:24
|
259 | let (input, tag) = delimited(char('('), is_not("("), char(')'))(input)?;
| ^^^^^^^^^ not found in this scope
|
help: consider importing this function
|
1 + use nom::sequence::delimited;
|
|
cannot find function `is_not` in this scope:
src/parser/parse_from_text/text_elements.rs#L257
error[E0425]: cannot find function `is_not` in this scope
--> src/parser/parse_from_text/text_elements.rs:257:47
|
257 | let (input, label) = delimited(char('['), is_not("["), char(']'))(input)?;
| ^^^^^^ not found in this scope
|
help: consider importing one of these items
|
1 + use nom::bytes::complete::is_not;
|
1 + use nom::bytes::streaming::is_not;
|
|
cannot find function `delimited` in this scope:
src/parser/parse_from_text/text_elements.rs#L257
error[E0425]: cannot find function `delimited` in this scope
--> src/parser/parse_from_text/text_elements.rs:257:26
|
257 | let (input, label) = delimited(char('['), is_not("["), char(']'))(input)?;
| ^^^^^^^^^ not found in this scope
|
help: consider importing this function
|
1 + use nom::sequence::delimited;
|
|
test
Node.js 16 actions are deprecated. Please update the following actions to use Node.js 20: actions/checkout@v2. For more information see: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.
|
test
The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
|