| 123456789101112131415161718 |
- [package]
- name = "chatrpg-api"
- version = "0.1.0"
- edition = "2024"
- [dependencies]
- actix-cors = "0.7.1"
- actix-web = "4.13.0"
- dotenvy = "0.15.7"
- serde = { version = "1.0.228", features = ["derive"]}
- sqlx = { version = "0.8.6", features = [
- "postgres",
- "runtime-tokio",
- "tls-native-tls",
- "chrono",
- "uuid"
- ]}
- thiserror = "2.0.18"
|