Cargo.toml 559 B

1234567891011121314151617181920212223
  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. argon2 = "0.5.3"
  9. chrono = { version = "0.4.44", features = ["serde"]}
  10. dotenvy = "0.15.7"
  11. serde = { version = "1.0.228", features = ["derive"]}
  12. serde_json = "1.0.150"
  13. sqlx = { version = "0.8.6", features = [
  14. "postgres",
  15. "runtime-tokio",
  16. "tls-native-tls",
  17. "chrono",
  18. "uuid"
  19. ]}
  20. thiserror = "2.0.18"
  21. uuid = { version = "1.23.1", features = ["v4", "v7", "serde"]}
  22. validator = { version = "0.20.0", features = ["derive"]}