Skip to content

chore: Dependency updates #183

chore: Dependency updates

chore: Dependency updates #183

GitHub Actions / clippy failed Jun 9, 2024 in 0s

clippy

1 error

Details

Results

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

Versions

  • rustc 1.81.0-nightly (f21554f7f 2024-06-08)
  • cargo 1.81.0-nightly (b1feb75d0 2024-06-07)
  • clippy 0.1.80 (f21554f 2024-06-08)

Annotations

Check failure on line 95 in breakwater-parser/benches/parsing.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

error[E0308]: mismatched types
  --> breakwater-parser/benches/parsing.rs:95:30
   |
95 |                 parser.parse(input, &mut Vec::new());
   |                        ----- ^^^^^ expected `&[u8]`, found `&Arc<Vec<Vec<u8>>>`
   |                        |
   |                        arguments to this method are incorrect
   |
   = note: expected reference `&[u8]`
              found reference `&std::sync::Arc<std::vec::Vec<std::vec::Vec<u8>>>`
note: method defined here
  --> /home/runner/work/breakwater/breakwater/breakwater-parser/src/lib.rs:15:8
   |
15 |     fn parse(&mut self, buffer: &[u8], response: &mut Vec<u8>) -> usize;
   |        ^^^^^