Enable deterministic behaviour in the scraper by default
This commit is contained in:
parent
a69fd14ea4
commit
1c19cbdd5d
|
@ -1498,6 +1498,7 @@ dependencies = [
|
|||
"ego-tree",
|
||||
"getopts",
|
||||
"html5ever",
|
||||
"indexmap",
|
||||
"matches",
|
||||
"selectors",
|
||||
"smallvec",
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Reference in New Issue