From cb9bf082f4d6a720c769cfc1dfa95ae11246684d Mon Sep 17 00:00:00 2001 From: Natty Date: Thu, 5 Sep 2024 17:46:17 +0200 Subject: [PATCH] Fixed dependencies in the frontend --- Cargo.lock | 4 ++++ fe_calckey/Cargo.toml | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b41482a..9e6c92e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4051,6 +4051,10 @@ version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "36b837f86b25d7c0d7988f00a54e74739be6477f2aac6201b8f429a7569991b7" dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper 0.1.2", "tower-layer", "tower-service", ] diff --git a/fe_calckey/Cargo.toml b/fe_calckey/Cargo.toml index 40b8a70..d5a05b3 100644 --- a/fe_calckey/Cargo.toml +++ b/fe_calckey/Cargo.toml @@ -9,14 +9,14 @@ magnetar_common = { path = "../magnetar_common" } thiserror = { workspace = true } miette = { workspace = true } -dotenvy = { workspace = true } +dotenvy = { workspace = true } axum = { workspace = true } -axum-extra = { workspace = true, features = ["typed-header"]} -headers = { workspace = true} +axum-extra = { workspace = true, features = ["typed-header"] } +headers = { workspace = true } hyper = { workspace = true, features = ["full"] } tokio = { workspace = true, features = ["full"] } -tower = { workspace = true } +tower = { workspace = true, features = ["util"] } tower-http = { workspace = true, features = ["cors", "trace", "fs"] } tera = { workspace = true, default-features = false, features = ["builtins"] }