From 09a4c6928280e8547f10223aafa7df35e7e807fc Mon Sep 17 00:00:00 2001 From: spinline Date: Wed, 11 Feb 2026 22:03:46 +0300 Subject: [PATCH] fix(auth): fix MsgPack serialization by adding missing feature in backend and reverting to individual arguments --- .gitignore | 6 ++++++ backend/Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0713b91..230aa30 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,9 @@ backend.log .runner .env backend/.env +*.db +*.db-shm +*.db-wal +*.sqlite +*.sqlite-shm +*.sqlite-wal diff --git a/backend/Cargo.toml b/backend/Cargo.toml index cb71219..ad4d9cc 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -44,6 +44,6 @@ tower_governor = "0.8.0" governor = "0.10.4" # Leptos -leptos = { version = "0.8.15", features = ["nightly"] } +leptos = { version = "0.8.15", features = ["nightly", "msgpack"] } leptos_axum = { version = "0.8.7" } jsonwebtoken = "9" \ No newline at end of file