From 21e93241ea1d323eb1e2c21bda3fa55f931f094a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Feb 2023 02:17:37 +0000 Subject: [PATCH] build(deps): bump tokio from 1.18.2 to 1.18.5 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.18.2 to 1.18.5. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.18.2...tokio-1.18.5) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.lock | 5 ++--- controller/Cargo.toml | 2 +- server/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f287919..cf4fb18 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1945,15 +1945,14 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.18.2" +version = "1.18.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4903bf0427cf68dddd5aa6a93220756f8be0c34fcfa9f5e6191e103e15a31395" +checksum = "0e050c618355082ae5a89ec63bbf897225d5ffe84c7c4e036874e4d185a5044e" dependencies = [ "bytes", "libc", "memchr", "mio", - "once_cell", "parking_lot", "pin-project-lite", "signal-hook-registry", diff --git a/controller/Cargo.toml b/controller/Cargo.toml index 0c97de7..e5723d4 100644 --- a/controller/Cargo.toml +++ b/controller/Cargo.toml @@ -8,7 +8,7 @@ license = "MIT" [dependencies] anyhow = "1" futures = "0.3" -tokio = { version = "1.0", features = ["signal", "rt"] } +tokio = { version = "1.18", features = ["signal", "rt"] } clap = { version = "3", features = ["derive"] } async-tungstenite = { version = "0.17", features = ["tokio-runtime", "tokio-openssl"] } serde_json = "1" diff --git a/server/Cargo.toml b/server/Cargo.toml index 0918ce6..e2f858d 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -14,7 +14,7 @@ gst-video = { package = "gstreamer-video", git = "https://gitlab.freedesktop.org gst-utils = { package = "gstreamer-utils", git="https://gitlab.freedesktop.org/gstreamer/gstreamer-rs" } glib = "0.15" futures = "0.3" -tokio = { version = "1.6.1", features = ["time", "test-util"] } +tokio = { version = "1.18.5", features = ["time", "test-util"] } actix = "0.13" actix-rt = "2" actix-web = { version = "4", features = ["openssl"] }