Skip to content

Commit 0e65977

Browse files
Bump the dependencies group with 10 updates
Bumps the dependencies group with 10 updates: | Package | From | To | | --- | --- | --- | | [anyhow](https://github.com/dtolnay/anyhow) | `1.0.96` | `1.0.97` | | [clap](https://github.com/clap-rs/clap) | `4.5.30` | `4.5.31` | | [console](https://github.com/console-rs/console) | `0.15.10` | `0.15.11` | | [serde_json](https://github.com/serde-rs/json) | `1.0.139` | `1.0.140` | | [uuid](https://github.com/uuid-rs/uuid) | `1.14.0` | `1.15.1` | | [wiremock](https://github.com/LukeMathWalker/wiremock-rs) | `0.6.2` | `0.6.3` | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.86` | `0.1.87` | | [cached](https://github.com/jaemk/cached) | `0.54.0` | `0.55.1` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.11` | `2.0.12` | | [rstest](https://github.com/la10736/rstest) | `0.24.0` | `0.25.0` | Updates `anyhow` from 1.0.96 to 1.0.97 - [Release notes](https://github.com/dtolnay/anyhow/releases) - [Commits](dtolnay/anyhow@1.0.96...1.0.97) Updates `clap` from 4.5.30 to 4.5.31 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](clap-rs/clap@clap_complete-v4.5.30...v4.5.31) Updates `console` from 0.15.10 to 0.15.11 - [Release notes](https://github.com/console-rs/console/releases) - [Changelog](https://github.com/console-rs/console/blob/main/CHANGELOG.md) - [Commits](console-rs/console@0.15.10...0.15.11) Updates `serde_json` from 1.0.139 to 1.0.140 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.139...v1.0.140) Updates `uuid` from 1.14.0 to 1.15.1 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](uuid-rs/uuid@v1.14.0...v1.15.1) Updates `wiremock` from 0.6.2 to 0.6.3 - [Changelog](https://github.com/LukeMathWalker/wiremock-rs/blob/main/CHANGELOG.md) - [Commits](LukeMathWalker/wiremock-rs@v0.6.2...v0.6.3) Updates `async-trait` from 0.1.86 to 0.1.87 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.86...0.1.87) Updates `cached` from 0.54.0 to 0.55.1 - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) Updates `thiserror` from 2.0.11 to 2.0.12 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@2.0.11...2.0.12) Updates `rstest` from 0.24.0 to 0.25.0 - [Release notes](https://github.com/la10736/rstest/releases) - [Changelog](https://github.com/la10736/rstest/blob/master/CHANGELOG.md) - [Commits](la10736/rstest@v0.24.0...v0.25.0) --- updated-dependencies: - dependency-name: anyhow dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: console dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: wiremock dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: thiserror dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: rstest dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 85263df commit 0e65977

File tree

4 files changed

+44
-44
lines changed

4 files changed

+44
-44
lines changed

Cargo.lock

+31-31
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/chain/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ name = "chain"
88
path = "chain.rs"
99

1010
[dependencies]
11-
async-trait = "0.1.86"
11+
async-trait = "0.1.87"
1212
lychee-lib = { path = "../../lychee-lib", default-features = false }
1313
reqwest = "0.12.9"
1414
tokio = { version = "1.43.0", features = ["full"] }

lychee-bin/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ version.workspace = true
1616
# requires all dependencies to have a version number.
1717
lychee-lib = { path = "../lychee-lib", version = "0.18.1", default-features = false }
1818

19-
anyhow = "1.0.96"
19+
anyhow = "1.0.97"
2020
assert-json-diff = "2.0.2"
21-
clap = { version = "4.5.30", features = ["env", "derive"] }
22-
console = "0.15.10"
21+
clap = { version = "4.5.31", features = ["env", "derive"] }
22+
console = "0.15.11"
2323
const_format = "0.2.34"
2424
csv = "1.3.1"
2525
dashmap = { version = "6.1.0", features = ["serde"] }
@@ -47,7 +47,7 @@ reqwest_cookie_store = "0.8.0"
4747
ring = "0.17.11"
4848
secrecy = { version = "0.10.3", features = ["serde"] }
4949
serde = { version = "1.0.218", features = ["derive"] }
50-
serde_json = "1.0.139"
50+
serde_json = "1.0.140"
5151
strum = { version = "0.27.1", features = ["derive"] }
5252
supports-color = "3.0.2"
5353
tabled = "0.18.0"
@@ -68,8 +68,8 @@ tracing-subscriber = { version = "0.3.19", default-features = false, features =
6868
"registry",
6969
"env-filter",
7070
] }
71-
uuid = { version = "1.14.0", features = ["v4"] }
72-
wiremock = "0.6.2"
71+
uuid = { version = "1.15.1", features = ["v4"] }
72+
wiremock = "0.6.3"
7373

7474
[features]
7575

lychee-lib/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ version.workspace = true
1313

1414
[dependencies]
1515
async-stream = "0.3.6"
16-
async-trait = "0.1.86"
17-
cached = "0.54.0"
16+
async-trait = "0.1.87"
17+
cached = "0.55.1"
1818
check-if-email-exists = { version = "0.9.1", optional = true }
1919
cookie_store = "0.21.1"
2020
email_address = "0.2.9"
@@ -53,7 +53,7 @@ secrecy = "0.10.3"
5353
serde = { version = "1.0.218", features = ["derive"] }
5454
serde_with = "3.12.0"
5555
shellexpand = "3.1.0"
56-
thiserror = "2.0.11"
56+
thiserror = "2.0.12"
5757
tokio = { version = "1.43.0", features = ["full"] }
5858
toml = "0.8.20"
5959
typed-builder = "0.20.0"
@@ -66,9 +66,9 @@ features = ["runtime-tokio"]
6666
[dev-dependencies]
6767
doc-comment = "0.3.3"
6868
tempfile = "3.17.1"
69-
wiremock = "0.6.2"
70-
serde_json = "1.0.139"
71-
rstest = "0.24.0"
69+
wiremock = "0.6.3"
70+
serde_json = "1.0.140"
71+
rstest = "0.25.0"
7272
toml = "0.8.20"
7373
pretty_assertions = "1.4.0"
7474

0 commit comments

Comments
 (0)