Cargo.toml 461 B

1234567891011121314151617181920
  1. [package]
  2. name = "chatrpg-api"
  3. version = "0.1.0"
  4. edition = "2024"
  5. [dependencies]
  6. actix-cors = "0.7.1"
  7. actix-web = "4.13.0"
  8. chrono = { version = "0.4.44" features = ["serde"]}
  9. dotenvy = "0.15.7"
  10. serde = { version = "1.0.228", features = ["derive"]}
  11. sqlx = { version = "0.8.6", features = [
  12. "postgres",
  13. "runtime-tokio",
  14. "tls-native-tls",
  15. "chrono",
  16. "uuid"
  17. ]}
  18. thiserror = "2.0.18"
  19. uuid = { version = "1.23.1", features = ["v4", "v7", "serde"]}