1
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden.git synced 2025-05-13 23:23:55 +00:00

Small update to Rocket WebSockets

Switched from channels to stream. This is able to use yield, and the
code looks a bit nicer this way.

Also updated all the crates.
This commit is contained in:
BlackDex 2023-04-12 15:59:05 +02:00
parent 07099df41a
commit 48cc31a59f
No known key found for this signature in database
GPG key ID: 58C80A2AA6C765E1
3 changed files with 37 additions and 39 deletions

View file

@ -71,7 +71,7 @@ futures = "0.3.28"
tokio = { version = "1.27.0", features = ["rt-multi-thread", "fs", "io-util", "parking_lot", "time", "signal"] }
# A generic serialization/deserialization framework
serde = { version = "1.0.159", features = ["derive"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.95"
# A safe, extensible ORM and Query builder
@ -133,7 +133,7 @@ data-url = "0.2.0"
bytes = "1.4.0"
# Cache function results (Used for version check and favicon fetching)
cached = "0.42.0"
cached = "0.43.0"
# Used for custom short lived cookie jar during favicon extraction
cookie = "0.16.2"