Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
153 changes: 113 additions & 40 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@ chrono = "0.4.40" # Used for formatting output timestamp
clap = { version = "4.5.32", features = ["derive"], optional = true } # Used for processing CLI arguments
cssparser = "0.34.0" # Used for dealing with CSS
encoding_rs = "0.8.35" # Used for parsing and converting document charsets
html5ever = "0.27.0" # Used for all things DOM
markup5ever_rcdom = "0.3.0" # Used for manipulating DOM
html5ever = "0.28.0" # Used for all things DOM
markup5ever_rcdom = "=0.4.0-unofficial" # Used for manipulating DOM
percent-encoding = "2.3.1" # Used for encoding URLs
sha2 = "0.10.8" # Used for calculating checksums during integrity checks
redb = "2.4.0" # Used for on-disk caching of downloaded assets
tempfile = { version = "3.18.0", optional = true } # Used for on-disk caching of downloaded assets
redb = "2.4.0" # Used for on-disk caching of remote assets
tempfile = { version = "3.19.0", optional = true } # Used for on-disk caching of remote assets
url = "2.5.4" # Used for parsing URLs
openssl = "0.10.71" # Used for static linking of the OpenSSL library

Expand All @@ -46,7 +46,7 @@ features = ["std", "perf-dfa", "unicode-perl"]

# Used for making network requests
[dependencies.reqwest]
version = "0.12.12"
version = "0.12.14"
default-features = false
features = ["default-tls", "blocking", "gzip", "brotli", "deflate"]

Expand Down
Loading