From c4081ec40ee70eca95301fa0ab741f092b20e5f6 Mon Sep 17 00:00:00 2001 From: David Pedersen Date: Tue, 16 Nov 2021 21:22:00 +0100 Subject: [PATCH] Update tokio-tungstenite (#525) --- axum/CHANGELOG.md | 3 +++ axum/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/axum/CHANGELOG.md b/axum/CHANGELOG.md index 0feea34c..be8f2af2 100644 --- a/axum/CHANGELOG.md +++ b/axum/CHANGELOG.md @@ -20,6 +20,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 `routing::{get, get_service, ..., MethodRouter}`. - **breaking:** `HandleErrorExt` has been removed in favor of `MethodRouter::handle_error`. +- Update WebSockets to use tokio-tungstenite 0.16 ([#525]) + +[#525]: https://github.com/tokio-rs/axum/pull/525 # 0.3.3 (13. November, 2021) diff --git a/axum/Cargo.toml b/axum/Cargo.toml index 8904f85b..011ef0b3 100644 --- a/axum/Cargo.toml +++ b/axum/Cargo.toml @@ -48,7 +48,7 @@ mime = { optional = true, version = "0.3" } multer = { optional = true, version = "2.0.0" } serde_json = { version = "1.0", optional = true } sha-1 = { optional = true, version = "0.9.6" } -tokio-tungstenite = { optional = true, version = "0.15" } +tokio-tungstenite = { optional = true, version = "0.16" } [dev-dependencies] futures = "0.3"