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
435 changes: 343 additions & 92 deletions Cargo.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,28 +25,28 @@ license = "CC0-1.0"
[dependencies]
atty = "0.2.14" # Used for highlighting network errors
base64 = "0.22.1" # Used for integrity attributes
chrono = "0.4.38" # Used for formatting output timestamp
chrono = "0.4.40" # Used for formatting output timestamp
clap = { version = "3.2.25", optional = true } # Used for processing CLI arguments
cssparser = "0.34.0" # Used for dealing with CSS
encoding_rs = "0.8.34" # Used for parsing and converting document charsets
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
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.14.0", optional = true } # Used for on-disk caching of downloaded assets
url = "2.5.2" # Used for parsing URLs
openssl = "0.10.64" # Used for static linking of the OpenSSL library
tempfile = { version = "3.18.0", optional = true } # Used for on-disk caching of downloaded assets
url = "2.5.4" # Used for parsing URLs
openssl = "0.10.71" # Used for static linking of the OpenSSL library

# Used for parsing srcset and NOSCRIPT
[dependencies.regex]
version = "1.10.6"
version = "1.11.1"
default-features = false
features = ["std", "perf-dfa", "unicode-perl"]

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

Expand Down
Loading