From b2bfb22e5fb0d9622d53a4be71f2da11be6ead89 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Dec 2023 04:41:18 +0000 Subject: [PATCH] Bump tokio from 1.33.0 to 1.35.0 Bumps [tokio](https://github.com/tokio-rs/tokio) from 1.33.0 to 1.35.0. - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.33.0...tokio-1.35.0) --- updated-dependencies: - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 8 ++++---- notegraf-web/Cargo.toml | 2 +- notegraf/Cargo.toml | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 490371a0..e24a6cd6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2644,9 +2644,9 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tokio" -version = "1.33.0" +version = "1.35.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4f38200e3ef7995e5ef13baec2f432a6da0aa9ac495b2c0e8f3b7eec2c92d653" +checksum = "841d45b238a16291a4e1584e61820b8ae57d696cc5015c459c229ccc6990cc1c" dependencies = [ "backtrace", "bytes", @@ -2673,9 +2673,9 @@ dependencies = [ [[package]] name = "tokio-macros" -version = "2.1.0" +version = "2.2.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" +checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b" dependencies = [ "proc-macro2", "quote", diff --git a/notegraf-web/Cargo.toml b/notegraf-web/Cargo.toml index 8968ffeb..6ebbcd0a 100644 --- a/notegraf-web/Cargo.toml +++ b/notegraf-web/Cargo.toml @@ -32,7 +32,7 @@ tracing-log = "0.2" lazy_static = "1.4" opentelemetry = { version = "0.20", features = ["rt-tokio-current-thread"] } opentelemetry-otlp = "0.13" -tokio = { version = "1.33", features = ["macros", "sync", "rt-multi-thread"] } +tokio = { version = "1.35", features = ["macros", "sync", "rt-multi-thread"] } notegraf = {version = "0.1.1", path = "../notegraf"} sqlx = { version = "0.7", features = ["postgres"] } serde = "1.0" diff --git a/notegraf/Cargo.toml b/notegraf/Cargo.toml index 67745386..92875ea6 100644 --- a/notegraf/Cargo.toml +++ b/notegraf/Cargo.toml @@ -21,11 +21,11 @@ pulldown-cmark = "0.9" url = "2.4" pulldown-cmark-to-cmark = "11.0" futures = "0.3" -tokio = { version = "1.33", features = ["sync"] } +tokio = { version = "1.35", features = ["sync"] } # sqlx 0.7 separates runtime and TLS features. It also always enables offline. sqlx = { version = "0.7", features = ["runtime-tokio", "tls-rustls", "postgres", "uuid", "chrono", "json"] } chrono = { version = "0.4", features = ["serde"] } tracing = "0.1" [dev-dependencies] -tokio = { version = "1.33", features = ["macros", "sync", "rt"] } +tokio = { version = "1.35", features = ["macros", "sync", "rt"] }