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 with 7 updates #124

Closed
wants to merge 1 commit into from

Bump the dependencies group with 7 updates

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

Bump the dependencies group with 7 updates #124

Bump the dependencies group with 7 updates
cb16bd1
Select commit
Loading
Failed to load commit list.
GitHub Actions / clippy failed Apr 5, 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.1 (7cf61ebde 2024-03-27)
  • cargo 1.77.1 (e52e36006 2024-03-26)
  • clippy 0.1.77 (7cf61eb 2024-03-27)

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>
    |            ^^^