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 9 updates #128

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
404 changes: 330 additions & 74 deletions Cargo.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions crates/html-query-extractor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -8,8 +8,8 @@ license = "MIT"
description = "HTML extractor for hq: jq, but for HTML"

[dependencies]
markup5ever = "0.11.0"
serde_json = "1.0.93"
markup5ever = "0.12.0"
serde_json = "1.0.116"
scraper = "0.19.0"
thiserror = "1.0.40"
thiserror = "1.0.58"
html-query-ast = {version= "0.2.2", path= "../html-query-ast" }
8 changes: 4 additions & 4 deletions crates/html-query-web-ui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -7,13 +7,13 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
dioxus = "0.4.3"
dioxus-web = "0.4.3"
dioxus = "0.5.1"
dioxus-web = "0.5.1"
getrandom = { version = "0.2", features = ["js"] }
html-query-ast = {version= "0.2.2", path= "../html-query-ast" }
html-query-extractor = {version= "0.2.2", path= "../html-query-extractor" }
serde_json = { version = "1.0.96", default-features = false }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = { version = "1.0.116", default-features = false }
serde = { version = "1.0.198", features = ["derive"] }

log = "0.4.19"
dioxus-logger = "0.4.1"
6 changes: 3 additions & 3 deletions crates/html-query/Cargo.toml
Original file line number Diff line number Diff line change
@@ -9,9 +9,9 @@ description = "jq, but for HTML"
readme = "../../README.md"

[dependencies]
clap = { version = "4.4.11", features = ["derive"] }
anyhow = "1.0.70"
serde_json = "1.0.93"
clap = { version = "4.5.4", features = ["derive"] }
anyhow = "1.0.82"
serde_json = "1.0.116"
html-query-ast = {version= "0.2.2", path= "../html-query-ast" }
html-query-extractor = {version= "0.2.2", path= "../html-query-extractor" }


Unchanged files with check annotations Beta

Ok(first_root
.value()
.attrs
.get(&QualName::new(

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

GitHub Actions / Checks

mismatched types

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

GitHub Actions / Rust project (ubuntu-latest)

mismatched types
None,
Namespace::from(""),
LocalName::from(attr.as_str()),
))

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

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> | ^^^
.map_or(Value::Null, |v| {
Value::String(trim_whitespace(v.to_string()))
}))