Cargo.toml 417 B

12345678910111213141516171819202122
  1. [package]
  2. name = "homo"
  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 = "0.4.44"
  10. email_address = "0.2.9"
  11. serde = "1.0.228"
  12. serde_json = "1.0.149"
  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"] }