Skip to content

use grype db cache to rust scan

Sign in for the full log view
GitHub Actions / Rust Clippy Report succeeded Apr 23, 2024 in 0s

Rust Clippy Report

33 warnings

Details

Results

Message level Amount
Internal compiler error 0
Error 0
Warning 33
Note 0
Help 0

Versions

  • rustc 1.77.2 (25ef9e3d8 2024-04-09)
  • cargo 1.77.2 (e52e36006 2024-03-26)
  • clippy 0.1.77 (25ef9e3 2024-04-09)

Annotations

Check warning on line 208 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:198:1
    |
198 | / pub unsafe extern "C" fn context_get_result(
199 | |     context: &Context,
200 | |     uuid_hex: *mut u8,
201 | |     matched_field: *const i8,
...   |
207 | |     capture_values_len: *mut usize,
208 | | ) -> isize {
    | |__________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 193 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:193:1
    |
193 | pub unsafe extern "C" fn context_reset(context: &mut Context) {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 173 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:167:1
    |
167 | / pub unsafe extern "C" fn context_add_value(
168 | |     context: &mut Context,
169 | |     field: *const i8,
170 | |     value: &CValue,
171 | |     errbuf: *mut u8,
172 | |     errbuf_len: *mut usize,
173 | | ) -> bool {
    | |_________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 162 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:162:1
    |
162 | pub unsafe extern "C" fn context_free(context: *mut Context) {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 157 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:157:1
    |
157 | pub unsafe extern "C" fn context_new(schema: &Schema) -> *mut Context {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 139 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:135:1
    |
135 | / pub unsafe extern "C" fn router_get_fields(
136 | |     router: &Router,
137 | |     fields: *mut *const u8,
138 | |     fields_len: *mut usize,
139 | | ) -> usize {
    | |__________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 130 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:130:1
    |
130 | pub unsafe extern "C" fn router_execute(router: &Router, context: &mut Context) -> bool {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 122 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
   --> src/ffi.rs:118:1
    |
118 | / pub unsafe extern "C" fn router_remove_matcher(
119 | |     router: &mut Router,
120 | |     priority: usize,
121 | |     uuid: *const i8,
122 | | ) -> bool {
    | |_________^
    |
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 99 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
  --> src/ffi.rs:92:1
   |
92 | / pub unsafe extern "C" fn router_add_matcher(
93 | |     router: &mut Router,
94 | |     priority: usize,
95 | |     uuid: *const i8,
...  |
98 | |     errbuf_len: *mut usize,
99 | | ) -> bool {
   | |_________^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 86 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
  --> src/ffi.rs:86:1
   |
86 | pub unsafe extern "C" fn router_free(router: *mut Router) {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 81 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
  --> src/ffi.rs:81:1
   |
81 | pub unsafe extern "C" fn router_new(schema: &Schema) -> *mut Router {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 72 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
  --> src/ffi.rs:72:1
   |
72 | pub unsafe extern "C" fn schema_add_field(schema: &mut Schema, field: *const i8, typ: Type) {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc

Check warning on line 67 in src/ffi.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

unsafe function's docs miss `# Safety` section

warning: unsafe function's docs miss `# Safety` section
  --> src/ffi.rs:67:1
   |
67 | pub unsafe extern "C" fn schema_free(schema: *mut Schema) {
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#missing_safety_doc
   = note: `-W clippy::missing-safety-doc` implied by `-W clippy::style`
   = help: to override `-W clippy::style` add `#[allow(clippy::missing_safety_doc)]`

Check warning on line 313 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:313:31
    |
313 | pub fn parse(source: &str) -> ParseResult<Expression> {
    |                               ^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 296 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:296:69
    |
296 | fn parse_expression(pair: Pair<Rule>, pratt: &PrattParser<Rule>) -> ParseResult<Expression> {
    |                                                                     ^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 284 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:284:63
    |
284 | fn parse_term(pair: Pair<Rule>, pratt: &PrattParser<Rule>) -> ParseResult<Expression> {
    |                                                               ^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 270 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:270:6
    |
270 | ) -> ParseResult<Expression> {
    |      ^^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 223 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:223:46
    |
223 | fn parse_transform_func(pair: Pair<Rule>) -> ParseResult<Lhs> {
    |                                              ^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 188 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:188:41
    |
188 | fn parse_predicate(pair: Pair<Rule>) -> ParseResult<Predicate> {
    |                                         ^^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 166 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:166:43
    |
166 | fn parse_int_literal(pair: Pair<Rule>) -> ParseResult<i64> {
    |                                           ^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 162 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:162:44
    |
162 | fn parse_ipv6_literal(pair: Pair<Rule>) -> ParseResult<Ipv6Addr> {
    |                                            ^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 159 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:159:44
    |
159 | fn parse_ipv4_literal(pair: Pair<Rule>) -> ParseResult<Ipv4Addr> {
    |                                            ^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 156 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:156:49
    |
156 | fn parse_ipv6_cidr_literal(pair: Pair<Rule>) -> ParseResult<Ipv6Cidr> {
    |                                                 ^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 153 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:153:49
    |
153 | fn parse_ipv4_cidr_literal(pair: Pair<Rule>) -> ParseResult<Ipv4Cidr> {
    |                                                 ^^^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err

Check warning on line 126 in src/parser.rs

See this annotation in the file changed.

@github-actions github-actions / Rust Clippy Report

the `Err`-variant returned from this function is very large

warning: the `Err`-variant returned from this function is very large
   --> src/parser.rs:126:46
    |
126 | fn parse_rawstr_literal(pair: Pair<Rule>) -> ParseResult<String> {
    |                                              ^^^^^^^^^^^^^^^^^^^ the `Err`-variant is at least 264 bytes
    |
    = help: try reducing the size of `parser::pest::error::Error<parser::Rule>`, for example by boxing large elements or replacing it with `Box<parser::pest::error::Error<parser::Rule>>`
    = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#result_large_err