Enable deterministic behaviour in the scraper by default
This commit is contained in:
parent
a69fd14ea4
commit
1c19cbdd5d
|
@ -1498,6 +1498,7 @@ dependencies = [
|
||||||
"ego-tree",
|
"ego-tree",
|
||||||
"getopts",
|
"getopts",
|
||||||
"html5ever",
|
"html5ever",
|
||||||
|
"indexmap",
|
||||||
"matches",
|
"matches",
|
||||||
"selectors",
|
"selectors",
|
||||||
"smallvec",
|
"smallvec",
|
||||||
|
|
|
@ -1,10 +1,9 @@
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
[package]
|
[package]
|
||||||
name = "haunter"
|
name = "haunter"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ansi-to-html = "0.1"
|
ansi-to-html = "0.1"
|
||||||
chrono = "0.4"
|
chrono = "0.4"
|
||||||
|
@ -15,3 +14,6 @@ text-diff = "0.4"
|
||||||
scraper = "0.13"
|
scraper = "0.13"
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
thirtyfour_sync = "0.27"
|
thirtyfour_sync = "0.27"
|
||||||
|
|
||||||
|
[features]
|
||||||
|
default = ["scraper/deterministic"]
|
||||||
|
|
Loading…
Reference in New Issue