Private
Public Access
1
0
Files
Kordophone/kordophone-db/Cargo.toml

20 lines
509 B
TOML
Raw Normal View History

2024-12-08 21:12:17 -08:00
[package]
name = "kordophone-db"
2025-07-15 18:04:11 -07:00
version = "1.0.0"
2024-12-08 21:12:17 -08:00
edition = "2021"
[dependencies]
anyhow = "1.0.94"
async-trait = "0.1.88"
bincode = "1.3.3"
2024-12-08 21:12:17 -08:00
chrono = "0.4.38"
diesel = { version = "2.2.6", features = ["chrono", "sqlite", "time"] }
diesel_migrations = { version = "2.2.0", features = ["sqlite"] }
kordophone = { path = "../kordophone" }
log = "0.4.27"
2024-12-08 21:12:17 -08:00
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0"
2024-12-08 21:12:17 -08:00
time = "0.3.37"
tokio = "1.44.2"
2024-12-08 21:12:17 -08:00
uuid = { version = "1.11.0", features = ["v4"] }