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