Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Closed
wants to merge 1 commit into from

Bump the dependencies group across 1 directory with 10 updates

15e7d58
Select commit
Loading
Failed to load commit list.
Sign in for the full log view
Closed

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

Bump the dependencies group across 1 directory with 10 updates
15e7d58
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Jun 11, 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>
    |            ^^^