Skip to content

Commit 63965ee

Browse files
Bump the dependencies group across 1 directory with 8 updates
Bumps the dependencies group with 8 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.23` | `4.5.26` | | [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` | | [serde_json](https://github.com/serde-rs/json) | `1.0.134` | `1.0.137` | | [tokio](https://github.com/tokio-rs/tokio) | `1.42.0` | `1.43.0` | | [uuid](https://github.com/uuid-rs/uuid) | `1.11.0` | `1.12.0` | | [async-trait](https://github.com/dtolnay/async-trait) | `0.1.84` | `0.1.85` | | [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.42.1` | `0.43.0` | | [thiserror](https://github.com/dtolnay/thiserror) | `2.0.9` | `2.0.11` | Updates `clap` from 4.5.23 to 4.5.26 - [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.23...clap_complete-v4.5.26) Updates `log` from 0.4.22 to 0.4.25 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](rust-lang/log@0.4.22...0.4.25) Updates `serde_json` from 1.0.134 to 1.0.137 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](serde-rs/json@v1.0.134...v1.0.137) Updates `tokio` from 1.42.0 to 1.43.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](tokio-rs/tokio@tokio-1.42.0...tokio-1.43.0) Updates `uuid` from 1.11.0 to 1.12.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](uuid-rs/uuid@1.11.0...1.12.0) Updates `async-trait` from 0.1.84 to 0.1.85 - [Release notes](https://github.com/dtolnay/async-trait/releases) - [Commits](dtolnay/async-trait@0.1.84...0.1.85) Updates `octocrab` from 0.42.1 to 0.43.0 - [Release notes](https://github.com/XAMPPRocky/octocrab/releases) - [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md) - [Commits](XAMPPRocky/octocrab@v0.42.1...v0.43.0) Updates `thiserror` from 2.0.9 to 2.0.11 - [Release notes](https://github.com/dtolnay/thiserror/releases) - [Commits](dtolnay/thiserror@2.0.9...2.0.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: log 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: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: async-trait dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: octocrab 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 ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent a11d515 commit 63965ee

File tree

9 files changed

+46
-46
lines changed

9 files changed

+46
-46
lines changed

Cargo.lock

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

examples/builder/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "builder.rs"
99

1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
12-
tokio = { version = "1.42.0", features = ["full"] }
12+
tokio = { version = "1.43.0", features = ["full"] }
1313
regex = "1.11.1"
1414
http = "1.2.0"
1515
reqwest = { version = "0.12.9", default-features = false, features = ["gzip"] }

examples/chain/Cargo.toml

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

1010
[dependencies]
11-
async-trait = "0.1.84"
11+
async-trait = "0.1.85"
1212
lychee-lib = { path = "../../lychee-lib", default-features = false }
1313
reqwest = "0.12.9"
14-
tokio = { version = "1.42.0", features = ["full"] }
14+
tokio = { version = "1.43.0", features = ["full"] }
1515

1616
[features]
1717
email-check = ["lychee-lib/email-check"]

examples/client_pool/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ path = "client_pool.rs"
1111
futures = "0.3.31"
1212
tokio-stream = "0.1.17"
1313
lychee-lib = { path = "../../lychee-lib", default-features = false }
14-
tokio = { version = "1.42.0", features = ["full"] }
14+
tokio = { version = "1.43.0", features = ["full"] }
1515

1616
[features]
1717
email-check = ["lychee-lib/email-check"]

examples/collect_links/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "collect_links.rs"
99

1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
12-
tokio = { version = "1.42.0", features = ["full"] }
12+
tokio = { version = "1.43.0", features = ["full"] }
1313
regex = "1.11.1"
1414
http = "1.2.0"
1515
tokio-stream = "0.1.17"

examples/extract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "extract.rs"
99

1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
12-
tokio = { version = "1.42.0", features = ["full"] }
12+
tokio = { version = "1.43.0", features = ["full"] }
1313

1414
[features]
1515
email-check = ["lychee-lib/email-check"]

examples/simple/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ path = "simple.rs"
99

1010
[dependencies]
1111
lychee-lib = { path = "../../lychee-lib", default-features = false }
12-
tokio = { version = "1.42.0", features = ["full"] }
12+
tokio = { version = "1.43.0", features = ["full"] }
1313

1414
[features]
1515
email-check = ["lychee-lib/email-check"]

lychee-bin/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lychee-lib = { path = "../lychee-lib", version = "0.18.0", default-features = fa
1818

1919
anyhow = "1.0.95"
2020
assert-json-diff = "2.0.2"
21-
clap = { version = "4.5.23", features = ["env", "derive"] }
21+
clap = { version = "4.5.26", features = ["env", "derive"] }
2222
console = "0.15.10"
2323
const_format = "0.2.34"
2424
csv = "1.3.1"
@@ -30,7 +30,7 @@ http = "1.2.0"
3030
humantime = "2.1.0"
3131
humantime-serde = "1.1.1"
3232
indicatif = "0.17.9"
33-
log = "0.4.22"
33+
log = "0.4.25"
3434
once_cell = "1.20.2"
3535
openssl-sys = { version = "0.9.104", optional = true }
3636
pad = "0.1.6"
@@ -47,11 +47,11 @@ reqwest_cookie_store = "0.8.0"
4747
ring = "0.17.8"
4848
secrecy = { version = "0.10.3", features = ["serde"] }
4949
serde = { version = "1.0.217", features = ["derive"] }
50-
serde_json = "1.0.134"
50+
serde_json = "1.0.137"
5151
strum = { version = "0.26.3", features = ["derive"] }
5252
supports-color = "3.0.2"
5353
tabled = "0.17.0"
54-
tokio = { version = "1.42.0", features = ["full"] }
54+
tokio = { version = "1.43.0", features = ["full"] }
5555
tokio-stream = "0.1.17"
5656
toml = "0.8.19"
5757
url = "2.5.4"
@@ -67,7 +67,7 @@ tracing-subscriber = { version = "0.3.19", default-features = false, features =
6767
"registry",
6868
"env-filter",
6969
] }
70-
uuid = { version = "1.11.0", features = ["v4"] }
70+
uuid = { version = "1.12.0", features = ["v4"] }
7171
wiremock = "0.6.2"
7272

7373
[features]

lychee-lib/Cargo.toml

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

1414
[dependencies]
1515
async-stream = "0.3.6"
16-
async-trait = "0.1.84"
16+
async-trait = "0.1.85"
1717
cached = "0.54.0"
1818
check-if-email-exists = { version = "0.9.1", optional = true }
1919
cookie_store = "0.21.1"
@@ -28,8 +28,8 @@ hyper = "1.5.2"
2828
ignore = "0.4.23"
2929
ip_network = "0.4.1"
3030
linkify = "0.10.0"
31-
log = "0.4.22"
32-
octocrab = "0.42.1"
31+
log = "0.4.25"
32+
octocrab = "0.43.0"
3333
once_cell = "1.20.2"
3434
openssl-sys = { version = "0.9.104", optional = true }
3535
path-clean = "1.0.1"
@@ -53,8 +53,8 @@ secrecy = "0.10.3"
5353
serde = { version = "1.0.217", features = ["derive"] }
5454
serde_with = "3.12.0"
5555
shellexpand = "3.1.0"
56-
thiserror = "2.0.9"
57-
tokio = { version = "1.42.0", features = ["full"] }
56+
thiserror = "2.0.11"
57+
tokio = { version = "1.43.0", features = ["full"] }
5858
toml = "0.8.19"
5959
typed-builder = "0.20.0"
6060
url = { version = "2.5.4", features = ["serde"] }
@@ -67,7 +67,7 @@ features = ["runtime-tokio"]
6767
doc-comment = "0.3.3"
6868
tempfile = "3.15.0"
6969
wiremock = "0.6.2"
70-
serde_json = "1.0.134"
70+
serde_json = "1.0.137"
7171
rstest = "0.24.0"
7272
toml = "0.8.19"
7373
pretty_assertions = "1.4.0"

0 commit comments

Comments
 (0)