dolltags/Cargo.toml

20 lines
461 B
TOML

[package]
name = "dolltags"
version = "0.1.0"
edition = "2021"
[dependencies]
rocket = "0.5.1"
rocket_dyn_templates = { version = "0.2.0", features = ["tera"] }
rocket_db_pools = { version = "0.2.0", features = ["sqlx_postgres"] }
sqlx = { version = "0.7", default-features = false, features = [
"postgres",
"macros",
"chrono",
"migrate",
] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1.11"
rand = "0.8"
serde_json = "1.0"
anyhow = "1.0"