From 0c0bb1e476e790110c2a10116959ee203b3a3543 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 26 Apr 2023 12:58:17 +0000 Subject: [PATCH] Bump tokio-stream from 0.1.12 to 0.1.14 Bumps [tokio-stream](https://github.com/tokio-rs/tokio) from 0.1.12 to 0.1.14. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Changelog](https://github.com/tokio-rs/tokio/blob/tokio-0.1.14/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-stream-0.1.12...tokio-0.1.14) --- updated-dependencies: - dependency-name: tokio-stream dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 4 ++-- examples/client_pool/Cargo.toml | 2 +- examples/collect_links/Cargo.toml | 2 +- lychee-bin/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b810359..238d72a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3586,9 +3586,9 @@ dependencies = [ [[package]] name = "tokio-stream" -version = "0.1.12" +version = "0.1.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8fb52b74f05dbf495a8fba459fdc331812b96aa086d9eb78101fa0d4569c3313" +checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842" dependencies = [ "futures-core", "pin-project-lite", diff --git a/examples/client_pool/Cargo.toml b/examples/client_pool/Cargo.toml index cd27e7b..6b329db 100644 --- a/examples/client_pool/Cargo.toml +++ b/examples/client_pool/Cargo.toml @@ -9,6 +9,6 @@ path = "client_pool.rs" [dependencies] futures = "0.3.27" -tokio-stream = "0.1.12" +tokio-stream = "0.1.14" lychee-lib = { path = "../../lychee-lib", version = "0.12.0" } tokio = { version = "1.27.0", features = ["full"] } diff --git a/examples/collect_links/Cargo.toml b/examples/collect_links/Cargo.toml index be68007..b3b5eae 100644 --- a/examples/collect_links/Cargo.toml +++ b/examples/collect_links/Cargo.toml @@ -12,5 +12,5 @@ lychee-lib = { path = "../../lychee-lib", version = "0.12.0" } tokio = { version = "1.27.0", features = ["full"] } regex = "1.8.1" http = "0.2.9" -tokio-stream = "0.1.12" +tokio-stream = "0.1.14" reqwest = { version = "0.11.16", features = ["gzip"] } diff --git a/lychee-bin/Cargo.toml b/lychee-bin/Cargo.toml index 85c204d..52f072f 100644 --- a/lychee-bin/Cargo.toml +++ b/lychee-bin/Cargo.toml @@ -39,7 +39,7 @@ tabled = "0.11.1" toml = "0.7.3" tokio = { version = "1.27.0", features = ["full"] } futures = "0.3.27" -tokio-stream = "0.1.12" +tokio-stream = "0.1.14" once_cell = "1.17.1" dashmap = { version = "5.4.0", features = ["serde"] } csv = "1.2.1"