Update tokio-tungstenite (#525)

This commit is contained in:
David Pedersen 2021-11-16 21:22:00 +01:00 committed by GitHub
parent 2bd0310463
commit c4081ec40e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 1 deletions

View file

@ -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)

View file

@ -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"