Skip to content

Commit 7fed227

Browse files
committed
use specific package versions
1 parent 0f7e309 commit 7fed227

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -20,39 +20,39 @@ include = ["src/*.rs", "Cargo.toml"]
2020
license = "CC0-1.0"
2121

2222
[dependencies]
23-
atty = "0.2.14" # Used for highlighting network errors
24-
base64 = "0.22.1" # Used for integrity attributes
25-
chrono = "0.4.41" # Used for formatting timestamps
26-
clap = { version = "4.5.37", features = [
23+
atty = "=0.2.14" # Used for highlighting network errors
24+
base64 = "=0.22.1" # Used for integrity attributes
25+
chrono = "=0.4.41" # Used for formatting timestamps
26+
clap = { version = "=4.5.37", features = [
2727
"derive",
2828
], optional = true } # Used for processing CLI arguments
29-
cssparser = "0.35.0" # Used for dealing with CSS
30-
directories = { version = "6.0.0", optional = true } # Used for GUI
31-
druid = { version = "0.8.3", optional = true } # Used for GUI
32-
encoding_rs = "0.8.35" # Used for parsing and converting document charsets
33-
html5ever = "0.29.1" # Used for all things DOM
29+
cssparser = "=0.35.0" # Used for dealing with CSS
30+
directories = { version = "=6.0.0", optional = true } # Used for GUI
31+
druid = { version = "=0.8.3", optional = true } # Used for GUI
32+
encoding_rs = "=0.8.35" # Used for parsing and converting document charsets
33+
html5ever = "=0.29.1" # Used for all things DOM
3434
markup5ever_rcdom = "=0.5.0-unofficial" # Used for manipulating DOM
35-
percent-encoding = "2.3.1" # Used for encoding URLs
36-
sha2 = "0.10.9" # Used for calculating checksums during integrity checks
37-
redb = "2.4.0" # Used for on-disk caching of remote assets
38-
tempfile = { version = "3.19.1", optional = true } # Used for on-disk caching of remote assets
39-
url = "2.5.4" # Used for parsing URLs
40-
openssl = "0.10.72" # Used for static linking of the OpenSSL library
35+
percent-encoding = "=2.3.1" # Used for encoding URLs
36+
sha2 = "=0.10.9" # Used for calculating checksums during integrity checks
37+
redb = "=2.4.0" # Used for on-disk caching of remote assets
38+
tempfile = { version = "=3.19.1", optional = true } # Used for on-disk caching of remote assets
39+
url = "=2.5.4" # Used for parsing URLs
40+
openssl = "=0.10.72" # Used for static linking of the OpenSSL library
4141

4242
# Used for unwrapping NOSCRIPT
4343
[dependencies.regex]
44-
version = "1.11.1"
44+
version = "=1.11.1"
4545
default-features = false
4646
features = ["std", "perf-dfa", "unicode-perl"]
4747

4848
# Used for making network requests
4949
[dependencies.reqwest]
50-
version = "0.12.15"
50+
version = "=0.12.15"
5151
default-features = false
5252
features = ["default-tls", "blocking", "gzip", "brotli", "deflate"]
5353

5454
[dev-dependencies]
55-
assert_cmd = "2.0.17"
55+
assert_cmd = "=2.0.17"
5656

5757
[features]
5858
default = ["cli", "vendored-openssl"]

0 commit comments

Comments
 (0)