diff options
author | 2024-11-14 17:59:21 +0000 | |
---|---|---|
committer | 2024-11-14 17:59:21 +0000 | |
commit | 469a3ad33914f7eff6edc9ca7fabb12f2950da84 (patch) | |
tree | 2712ba2e927fb820b6aa58443c9227d1da24a03f /Cargo.toml | |
parent | b7a2265e9b29d8fa09f84f5213ef7f8ed3045ca6 (diff) | |
download | critch-469a3ad33914f7eff6edc9ca7fabb12f2950da84.tar.gz critch-469a3ad33914f7eff6edc9ca7fabb12f2950da84.tar.bz2 critch-469a3ad33914f7eff6edc9ca7fabb12f2950da84.zip |
database work
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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"] } |