From 469a3ad33914f7eff6edc9ca7fabb12f2950da84 Mon Sep 17 00:00:00 2001 From: cel 🌸 Date: Thu, 14 Nov 2024 17:59:21 +0000 Subject: database work --- Cargo.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml index 8980e23..1fabb93 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,9 +10,12 @@ build = "src/build.rs" ructe = { version = "0.17.2", features = ["sass", "mime03"] } [dependencies] +mime = "0.3.17" poem = { version = "3.1.3", features = ["session"] } serde = "1.0.215" -sqlx = { version = "0.8.2", features = ["uuid", "postgres", "runtime-tokio"] } +sqlx = { version = "0.8.2", features = ["uuid", "postgres", "runtime-tokio", "time"] } +time = "0.3.36" +time-humanize = "0.1.3" tokio = { version = "1.41.1", features = ["full"] } toml = { version = "0.8.19", features = ["parse"] } -uuid = "1.11.0" +uuid = { version = "1.11.0", features = ["v4"] } -- cgit