first pass db schema & deps

This commit is contained in:
2026-02-20 21:33:41 +01:00
commit 53f9e40477
6 changed files with 1860 additions and 0 deletions

21
Cargo.toml Normal file
View File

@@ -0,0 +1,21 @@
[package]
name = "mnemosyne"
version = "0.1.0"
edition = "2024"
[dependencies]
argon2 = "0.5.3"
axum = "0.8.8"
chrono = "0.4.43"
chrono-tz = "0.10.4"
dotenvy = "0.15.7"
maud = { version = "0.27.0", features = ["axum"] }
rand = "0.10.0"
rusqlite = { version = "0.38.0", features = ["bundled", "chrono", "uuid"] }
serde = "1.0.228"
serde_json = "1.0.149"
thiserror = "2.0.18"
tokio = { version = "1.49.0", features = ["full"] }
tower = { version = "0.5.3", features = ["full"] }
tower-http = { version = "0.6.8", features = ["full"] }
uuid = { version = "1.21.0", features = ["serde", "v7"] }