Enable deterministic behaviour in the scraper by default

This commit is contained in:
Kienan Stewart 2022-10-09 10:53:59 -04:00
parent a69fd14ea4
commit 1c19cbdd5d
2 changed files with 5 additions and 2 deletions

1
Cargo.lock generated
View File

@ -1498,6 +1498,7 @@ dependencies = [
"ego-tree",
"getopts",
"html5ever",
"indexmap",
"matches",
"selectors",
"smallvec",

View File

@ -1,10 +1,9 @@
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "haunter"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ansi-to-html = "0.1"
chrono = "0.4"
@ -15,3 +14,6 @@ text-diff = "0.4"
scraper = "0.13"
tempfile = "3"
thirtyfour_sync = "0.27"
[features]
default = ["scraper/deterministic"]