Skip to content

Commit

Permalink
Merge branch 'lycheeverse:master' into text-fragment
Browse files Browse the repository at this point in the history
  • Loading branch information
thiru-appitap authored Jan 12, 2025
2 parents b6d5b5a + a11d515 commit 4ebb039
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 34 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,6 @@ jobs:
github.actor != 'dependabot[bot]' &&
( github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.event.pull_request.base.repo.owner.login )
steps:
# If we got triggered with a new tag and it was not through a
# workflow_run, then stop here and let the release workflow handle it.
- name: Exit early if tag and not from release workflow
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
run: exit 0

- name: Checkout
uses: actions/checkout@v4

Expand Down
39 changes: 20 additions & 19 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/chain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "chain"
path = "chain.rs"

[dependencies]
async-trait = "0.1.83"
async-trait = "0.1.84"
lychee-lib = { path = "../../lychee-lib", default-features = false }
reqwest = "0.12.9"
tokio = { version = "1.42.0", features = ["full"] }
Expand Down
4 changes: 2 additions & 2 deletions lychee-bin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ reqwest_cookie_store = "0.8.0"
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.17.8"
secrecy = { version = "0.10.3", features = ["serde"] }
serde = { version = "1.0.216", features = ["derive"] }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.134"
strum = { version = "0.26.3", features = ["derive"] }
supports-color = "3.0.2"
Expand All @@ -61,7 +61,7 @@ assert_cmd = "2.0.16"
cookie_store = "0.21.1"
predicates = "3.1.3"
pretty_assertions = "1.4.1"
tempfile = "3.14.0"
tempfile = "3.15.0"
tracing-subscriber = { version = "0.3.19", default-features = false, features = [
"fmt",
"registry",
Expand Down
12 changes: 6 additions & 6 deletions lychee-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ version.workspace = true

[dependencies]
async-stream = "0.3.6"
async-trait = "0.1.83"
async-trait = "0.1.84"
cached = "0.54.0"
check-if-email-exists = { version = "0.9.1", optional = true }
cookie_store = "0.21.1"
email_address = "0.2.9"
fancy-regex = "0.14.0"
futures = "0.3.31"
glob = "0.3.1"
glob = "0.3.2"
headers = "0.4.0"
html5ever = "0.29.0"
html5gum = "0.7.0"
Expand Down Expand Up @@ -51,8 +51,8 @@ reqwest_cookie_store = { version = "0.8.0", features = ["serde"] }
# https://github.com/Homebrew/homebrew-core/pull/70216
ring = "0.17.8"
secrecy = "0.10.3"
serde = { version = "1.0.216", features = ["derive"] }
serde_with = "3.8.1"
serde = { version = "1.0.217", features = ["derive"] }
serde_with = "3.12.0"
shellexpand = "3.1.0"
thiserror = "2.0.9"
tokio = { version = "1.42.0", features = ["full"] }
Expand All @@ -66,10 +66,10 @@ features = ["runtime-tokio"]

[dev-dependencies]
doc-comment = "0.3.3"
tempfile = "3.14.0"
tempfile = "3.15.0"
wiremock = "0.6.2"
serde_json = "1.0.134"
rstest = "0.23.0"
rstest = "0.24.0"
toml = "0.8.19"
pretty_assertions = "1.4.0"

Expand Down

0 comments on commit 4ebb039

Please sign in to comment.