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
53 changes: 18 additions & 35 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion examples/archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ path = "archive.rs"
[dependencies]
lychee-lib = { path = "../../lychee-lib", default-features = false }
tokio = { version = "1.49.0", features = ["full"] }
url = "2.5.7"
url = "2.5.8"

[features]
email-check = ["lychee-lib/email-check"]
Expand Down
8 changes: 4 additions & 4 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,18 @@ reqwest_cookie_store = { version = "0.9.0", features = ["serde"] }
ring = "0.17.14"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.148"
serde_json = "1.0.149"
strum = { version = "0.27.2", features = ["derive"] }
supports-color = "3.0.2"
tabled = "0.20.0"
tokio = { version = "1.49.0", features = ["full"] }
tokio-stream = "0.1.18"
toml = "0.9.10"
url = "2.5.7"
toml = "0.9.11"
url = "2.5.8"


[dev-dependencies]
assert_cmd = "2.1.1"
assert_cmd = "2.1.2"
cookie_store = "0.22.0"
predicates = "3.1.3"
pretty_assertions = "1.4.1"
Expand Down
4 changes: 1 addition & 3 deletions lychee-bin/tests/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1461,9 +1461,7 @@ The config file should contain every possible key for documentation purposes."
.arg("--")
.arg("-")
.assert()
// LinkedIn does not always return 999, so we cannot check for that
// .stderr(contains(format!("[999] {unknown_url} | Unknown status")))
;
.success();

// If the status code was 999, the cache file should be empty
// because we do not want to cache unknown status codes
Expand Down
10 changes: 5 additions & 5 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ futures = "0.3.31"
glob = "0.3.3"
governor = "0.10.4"
headers = "0.4.1"
html5ever = "0.36.1"
html5ever = "0.37.1"
html5gum = "0.8.3"
http = "1.4.0"
httpdate = "1.0.3"
Expand Down Expand Up @@ -61,9 +61,9 @@ shellexpand = "3.1.1"
strum = { version = "0.27.2", features = ["derive"] }
thiserror = "2.0.17"
tokio = { version = "1.49.0", features = ["full"] }
toml = "0.9.10"
toml = "0.9.11"
typed-builder = "0.23.2"
url = { version = "2.5.7", features = ["serde"] }
url = { version = "2.5.8", features = ["serde"] }
walkdir = "2.5.0"

[dependencies.par-stream]
Expand All @@ -74,10 +74,10 @@ features = ["runtime-tokio"]
doc-comment = "0.3.4"
pretty_assertions = "1.4.1"
rstest = "0.26.1"
serde_json = "1.0.148"
serde_json = "1.0.149"
tempfile = "3.24.0"
test-utils = { path = "../test-utils" }
toml = "0.9.10"
toml = "0.9.11"
wiremock = "0.6.5"

[features]
Expand Down
Loading