Skip to content

Bump the dependencies group with 5 updates #206

Bump the dependencies group with 5 updates

Bump the dependencies group with 5 updates #206

GitHub Actions / clippy failed Mar 27, 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.77.0 (aedd173a2 2024-03-17)
  • cargo 1.77.0 (3fe68eabf 2024-02-29)
  • clippy 0.1.77 (aedd173 2024-03-17)

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.0/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>
    |            ^^^