deploy github pages by action #10
Annotations
3 warnings
field `0` is never read:
crates/postgresql-cst-parser/src/lexer.rs#L18
warning: field `0` is never read
--> crates/postgresql-cst-parser/src/lexer.rs:18:13
|
18 | Keyword(String),
| ------- ^^^^^^
| |
| field in this variant
|
= note: `Yylval` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
18 | Keyword(()),
| ~~
|
field `0` is never read:
crates/postgresql-cst-parser/src/lexer.rs#L17
warning: field `0` is never read
--> crates/postgresql-cst-parser/src/lexer.rs:17:7
|
17 | I(i32),
| - ^^^
| |
| field in this variant
|
= note: `Yylval` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
17 | I(()),
| ~~
|
field `0` is never read:
crates/postgresql-cst-parser/src/lexer.rs#L16
warning: field `0` is never read
--> crates/postgresql-cst-parser/src/lexer.rs:16:9
|
16 | Str(String),
| --- ^^^^^^
| |
| field in this variant
|
= note: `Yylval` has derived impls for the traits `Clone` and `Debug`, but these are intentionally ignored during dead code analysis
= note: `#[warn(dead_code)]` on by default
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
16 | Str(()),
| ~~
|