From dfb747c206b4e3f1e3df76389c6f2dcaad8fd373 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Sun, 8 Dec 2024 18:22:30 +0000 Subject: [PATCH] Add extra feature --- backend/sync_server/Cargo.toml | 3 ++- backend/sync_wasm/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/backend/sync_server/Cargo.toml b/backend/sync_server/Cargo.toml index eb49f4b1..947f785c 100644 --- a/backend/sync_server/Cargo.toml +++ b/backend/sync_server/Cargo.toml @@ -19,6 +19,7 @@ tracing-subscriber = "0.3.19" serde_yaml = "0.9.34" sqlx = { version = "0.8.2", features = ["sqlite", "runtime-tokio", "uuid", "chrono"] } chrono = { version = "0.4.38", features = ["serde"] } -aide = { version = "0.13.4", features = ["axum", "axum-ws", "scalar"] } +aide = { version = "0.13.4", features = ["axum", "axum-ws", "scalar", "axum-headers"] } schemars = { version = "0.8.21", features = ["chrono", "uuid1"] } rand = "0.8.5" +axum-extra = { version = "0.9.6", features = ["typed-header"] } diff --git a/backend/sync_wasm/Cargo.toml b/backend/sync_wasm/Cargo.toml index 39670df4..0eec0171 100644 --- a/backend/sync_wasm/Cargo.toml +++ b/backend/sync_wasm/Cargo.toml @@ -11,9 +11,9 @@ crate-type = ["cdylib", "rlib"] default = ["console_error_panic_hook"] [dependencies] -wasm-bindgen = "0.2.84" sync_lib = { path = "../sync_lib" } reconcile = { path = "../reconcile" } +wasm-bindgen = "0.2.84" getrandom = { version = "0.2.3", features = ["js"] }