This commit is contained in:
root
2025-12-14 10:39:18 +03:00
commit 639f4e2b4e
179 changed files with 21065 additions and 0 deletions

15
ticktalk/crates/db/Cargo.toml Executable file
View File

@@ -0,0 +1,15 @@
[package]
name = "ticktalk-db"
version = "0.1.0"
edition = "2024"
[dependencies]
chrono = { workspace = true }
bb8 = "0.9.0"
diesel = { version = "2.2.0", features = ["postgres", "chrono", "uuid"] }
diesel-async = { version = "0.7.4", features = ["postgres", "pool", "bb8"] }
diesel-derive-enum = { version = "2.1.0", features = ["postgres"] }
diesel_migrations = "2.3.0"
thiserror = { workspace = true }
uuid = { workspace = true }
dotenv = "0.15.0"