Skip to content

Bump the dependencies group across 1 directory with 10 updates #218

Bump the dependencies group across 1 directory with 10 updates

Bump the dependencies group across 1 directory with 10 updates #218

GitHub Actions / clippy failed May 7, 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.78.0 (9b00956e5 2024-04-29)
  • cargo 1.78.0 (54d8815d0 2024-03-26)
  • clippy 0.1.78 (9b00956 2024-04-29)

Annotations

Check failure on line 51 in crates/html-query-extractor/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

mismatched types

error[E0308]: mismatched types
   --> crates/html-query-extractor/src/lib.rs:47:22
    |
47  |                   .get(&QualName::new(
    |  __________________---_^
    | |                  |
    | |                  arguments to this method are incorrect
48  | |                     None,
49  | |                     Namespace::from(""),
50  | |                     LocalName::from(attr.as_str()),
51  | |                 ))
    | |_________________^ expected `markup5ever::interface::QualName`, found `markup5ever::QualName`
    |
    = note: `markup5ever::QualName` and `markup5ever::interface::QualName` have similar names, but are actually distinct types
note: `markup5ever::QualName` is defined in crate `markup5ever`
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/markup5ever-0.12.1/interface/mod.rs:147:1
    |
147 | pub struct QualName {
    | ^^^^^^^^^^^^^^^^^^^
note: `markup5ever::interface::QualName` is defined in crate `markup5ever`
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/markup5ever-0.11.0/interface/mod.rs:147:1
    |
147 | pub struct QualName {
    | ^^^^^^^^^^^^^^^^^^^
    = note: perhaps two different versions of crate `markup5ever` are being used?
note: method defined here
   --> /home/runner/.cargo/registry/src/index.crates.io-6f17d22bba15001f/ahash-0.8.11/src/hash_map.rs:102:12
    |
102 |     pub fn get<Q: ?Sized>(&self, k: &Q) -> Option<&V>
    |            ^^^