Update crates and change to UUID

This commit is contained in:
2022-08-18 21:24:16 +02:00
parent 9227cdef9a
commit f2cdbe0638
11 changed files with 1835 additions and 144 deletions

@@ -10,19 +10,22 @@ edition = "2018"
hyper = { version = "0.14", features = ["full"] }
tokio = { version = "1", features = ["full"] }
futures = "0.3"
tokio-tls = "0.3.1"
rustls = "0.19.1"
tokio-rustls = "0.22.0"
futures-util = "0.3.15"
async-stream = "0.3.2"
hyper-tungstenite = "0.3.2"
tokio-tls = "0.3"
rustls = "0.20"
rustls-pemfile = "1.0"
tokio-rustls = "0.23"
futures-util = "0.3"
async-stream = "0.3"
hyper-tungstenite = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.64"
serde_json = "1.0"
chrono = "0.4"
bb8 = "0.7.0"
bb8-postgres = "0.7.0"
tokio-postgres = { version = "0.7", features = ["with-uuid-1"] }
bb8 = "0.8"
bb8-postgres = "0.8"
ansi_term = "0.12"
rust-crypto = "^0.2"
base64 = "0.13.0"
base64-url = "1.4.10"
rand = "0.8.3"
base64 = "0.13"
base64-url = "1.4"
rand = "0.8"
uuid = { version = "1.1", features = ["v4", "serde", "fast-rng"] }