From aa6861a44f0b6d59b02cc7c9e80e594f1227b4da Mon Sep 17 00:00:00 2001 From: ralpha Date: Wed, 19 May 2021 16:06:01 +0200 Subject: [PATCH] Update tokio to 1.6.0 Closes: #268 --- CHANGELOG.md | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 349176a5..e6b2538e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. * Bump minimum supported Rust version from `1.41.0` to `1.45.0` (PR #264). * Update `lsp-types` from `0.82` to `0.89` (PR #264) -* Update `tokio` from `0.2` to `1.4.0` (PR #264) +* Update `tokio` from `0.2` to `1.6.0` (PR #264, PR #268) * Update `tokio-util` from `0.3` to `0.6.5` (PR #264) * Update `bytes` from `0.5` to `1.0.1` (PR #264) * Update `dashmap` from `3.5.1` to `4.0.2` (PR #264) diff --git a/Cargo.toml b/Cargo.toml index a6b34d85..124c8be4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,7 +24,7 @@ lsp-types = "0.89.0" nom = { version = "6.1.2", default-features = false, features = ["std"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -tokio = { version = "1.4.0", features = ["rt-multi-thread", "time"] } +tokio = { version = "1.6.0", features = ["rt-multi-thread", "time"] } tokio-util = { version = "0.6.5", features = ["codec"] } tower-lsp-macros = { version = "0.3", path = "./tower-lsp-macros" } tower-service = "0.3"