chore: update cargo deps
This commit is contained in:
parent
2ee0620d23
commit
029e45aee8
599
Cargo.lock
generated
599
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
10
Cargo.toml
10
Cargo.toml
@ -5,7 +5,7 @@ edition = "2021"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
axum = {version = "0.6", features = ["ws", "headers"]}
|
axum = {version = "0.6", features = ["ws", "headers"]}
|
||||||
axum-server = {version = "0.4", features = ["tls-rustls"]}
|
axum-server = {version = "0.5", features = ["tls-rustls"]}
|
||||||
tokio = {version = "1", features = ["rt-multi-thread"]}
|
tokio = {version = "1", features = ["rt-multi-thread"]}
|
||||||
dotenvy = "0.15"
|
dotenvy = "0.15"
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
@ -13,13 +13,13 @@ tracing-subscriber = {version = "0.3", features = ["env-filter"]}
|
|||||||
tower-http = {version = "0.4", features = ["trace", "cors", "sensitive-headers", "request-id"]}
|
tower-http = {version = "0.4", features = ["trace", "cors", "sensitive-headers", "request-id"]}
|
||||||
hyper = {version = "0.14", features = ["client"]}
|
hyper = {version = "0.14", features = ["client"]}
|
||||||
http = "0.2"
|
http = "0.2"
|
||||||
async-tungstenite = {version = "0.21", features = ["tokio-runtime"]}
|
async-tungstenite = {version = "0.23", features = ["tokio-runtime"]}
|
||||||
axum-tungstenite = {package = "tungstenite", version = "0.18"}
|
axum-tungstenite = {package = "tungstenite", version = "0.20"}
|
||||||
futures = {version = "0.3"}
|
futures = {version = "0.3"}
|
||||||
serde = {version = "1", features = ["derive"]}
|
serde = {version = "1", features = ["derive"]}
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
rust-argon2 = "1.0"
|
rust-argon2 = "2.0"
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
scc = "1"
|
scc = "2"
|
||||||
base64 = "0.21"
|
base64 = "0.21"
|
||||||
serde_qs = "0.12"
|
serde_qs = "0.12"
|
@ -56,7 +56,7 @@ impl Tokens {
|
|||||||
pub async fn write(&self, path: impl AsRef<Path>) -> Result<(), AppError> {
|
pub async fn write(&self, path: impl AsRef<Path>) -> Result<(), AppError> {
|
||||||
let mut contents = String::new();
|
let mut contents = String::new();
|
||||||
self.hashed
|
self.hashed
|
||||||
.for_each_async(|hash| {
|
.scan_async(|hash| {
|
||||||
writeln!(&mut contents, "{hash}").expect("if this fails then too bad")
|
writeln!(&mut contents, "{hash}").expect("if this fails then too bad")
|
||||||
})
|
})
|
||||||
.await;
|
.await;
|
||||||
|
Loading…
Reference in New Issue
Block a user