Cargo.toml 677 B

123456789101112131415161718192021222324252627282930313233343536
  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 = { version="0.4.44", features=["serde"] }
  10. dotenvy = "0.15.7"
  11. email_address = "0.2.9"
  12. rumqttc = "0.25.1"
  13. serde = "1.0.228"
  14. serde_json = "1.0.149"
  15. sqlx = { version = "0.8.6", features = [
  16. "postgres",
  17. "runtime-tokio",
  18. "tls-native-tls",
  19. "chrono",
  20. "uuid"
  21. ]}
  22. thiserror = "2.0.18"
  23. tokio = "1.52.3"
  24. uuid = { version="1.23.1", features=["v4", "v7", "serde"] }
  25. [profile.release]
  26. opt-level = 3
  27. lto = "fat"
  28. codegen-units = 1
  29. panic = "abort"
  30. strip = true
  31. debug = false
  32. incremental = false
  33. rpath = false
  34. overflow-checks = false