Cargo.toml 658 B

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