From 12f16138343047b6600341fc267c23c8ab05d478 Mon Sep 17 00:00:00 2001 From: Shane Osbourne Date: Thu, 5 Dec 2024 22:39:30 +0000 Subject: [PATCH] deterministic HTML output --- Cargo.lock | 4 +--- crates/bsnext_html/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 95f0fb7..a9d773b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2515,10 +2515,8 @@ checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" [[package]] name = "scraper" version = "0.21.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0e749d29b2064585327af5038a5a8eb73aeebad4a3472e83531a436563f7208" +source = "git+https://github.com/shakyShane/scraper.git?branch=master#7f818fcb239c99ddba45d4f041d2a959cde9aa22" dependencies = [ - "ahash", "cssparser", "ego-tree", "getopts", diff --git a/crates/bsnext_html/Cargo.toml b/crates/bsnext_html/Cargo.toml index 6a64361..11ceaf6 100644 --- a/crates/bsnext_html/Cargo.toml +++ b/crates/bsnext_html/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" bsnext_input = { path = "../bsnext_input" } unindent = "0.2.3" indent = "0.1.1" -scraper = "0.21.0" +scraper = { git = "https://github.com/shakyShane/scraper.git", branch = "master" } [dev-dependencies] anyhow = { workspace = true }