diff --git a/Cargo.lock b/Cargo.lock index f17918a..01450b1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1232,9 +1232,9 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scraper" -version = "0.18.1" +version = "0.19.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "585480e3719b311b78a573db1c9d9c4c1f8010c2dee4cc59c2efe58ea4dbc3e1" +checksum = "5b80b33679ff7a0ea53d37f3b39de77ea0c75b12c5805ac43ec0c33b3051af1b" dependencies = [ "ahash", "cssparser", diff --git a/crates/html-query-ast/Cargo.toml b/crates/html-query-ast/Cargo.toml index 7af52f9..809b199 100644 --- a/crates/html-query-ast/Cargo.toml +++ b/crates/html-query-ast/Cargo.toml @@ -12,4 +12,4 @@ description = "Expression parser for hq: jq, but for HTML" [dependencies] nom = "7.1.3" nom-supreme = "0.8.0" -scraper = "0.18.0" +scraper = "0.19.0" diff --git a/crates/html-query-extractor/Cargo.toml b/crates/html-query-extractor/Cargo.toml index a27dad4..1d41f51 100644 --- a/crates/html-query-extractor/Cargo.toml +++ b/crates/html-query-extractor/Cargo.toml @@ -10,6 +10,6 @@ description = "HTML extractor for hq: jq, but for HTML" [dependencies] markup5ever = "0.11.0" serde_json = "1.0.93" -scraper = "0.18.0" +scraper = "0.19.0" thiserror = "1.0.40" html-query-ast = {version= "0.2.2", path= "../html-query-ast" }