@@ -5,22 +5,16 @@ description = "A fast, async link checker"
5
5
documentation = " https://docs.rs/lychee"
6
6
homepage = " https://github.com/lycheeverse/lychee"
7
7
edition = " 2021"
8
- keywords = [
9
- " link" ,
10
- " checker" ,
11
- " cli" ,
12
- " link-checker" ,
13
- " validator" ,
14
- ]
8
+ keywords = [" link" , " checker" , " cli" , " link-checker" , " validator" ]
15
9
license = " Apache-2.0 OR MIT"
16
10
repository = " https://github.com/lycheeverse/lychee"
17
- version = " 0.14.1 "
11
+ version = " 0.14.2 "
18
12
readme = " ../README.md"
19
13
20
14
[dependencies ]
21
15
# NOTE: We need to specify the version of lychee-lib here because crates.io
22
16
# requires all dependencies to have a version number.
23
- lychee-lib = { path = " ../lychee-lib" , version = " 0.14.1 " , default-features = false }
17
+ lychee-lib = { path = " ../lychee-lib" , version = " 0.14.2 " , default-features = false }
24
18
25
19
anyhow = " 1.0.78"
26
20
assert-json-diff = " 2.0.2"
@@ -41,7 +35,10 @@ once_cell = "1.19.0"
41
35
openssl-sys = { version = " 0.9.98" , optional = true }
42
36
pad = " 0.1.6"
43
37
regex = " 1.10.2"
44
- reqwest = { version = " 0.11.23" , default-features = false , features = [" gzip" , " json" ] }
38
+ reqwest = { version = " 0.11.23" , default-features = false , features = [
39
+ " gzip" ,
40
+ " json" ,
41
+ ] }
45
42
reqwest_cookie_store = " 0.6.0"
46
43
# Make build work on Apple Silicon.
47
44
# See https://github.com/briansmith/ring/issues/1163
@@ -63,7 +60,11 @@ assert_cmd = "2.0.12"
63
60
predicates = " 3.0.4"
64
61
pretty_assertions = " 1.4.0"
65
62
tempfile = " 3.9.0"
66
- tracing-subscriber = { version = " 0.3.18" , default-features = false , features = [" fmt" , " registry" , " env-filter" ] }
63
+ tracing-subscriber = { version = " 0.3.18" , default-features = false , features = [
64
+ " fmt" ,
65
+ " registry" ,
66
+ " env-filter" ,
67
+ ] }
67
68
uuid = { version = " 1.6.1" , features = [" v4" ] }
68
69
wiremock = " 0.5.22"
69
70
0 commit comments