| 123456789101112131415161718192021222324252627282930313233343536 |
- [package]
- name = "zGrid-api"
- version = "0.1.0"
- edition = "2024"
- [dependencies]
- actix-cors = "0.7.1"
- actix-web = "4.13.0"
- argon2 = "0.5.3"
- chrono = { version="0.4.44", features=["serde"] }
- dotenvy = "0.15.7"
- email_address = "0.2.9"
- rumqttc = "0.25.1"
- serde = "1.0.228"
- serde_json = "1.0.149"
- sqlx = { version = "0.8.6", features = [
- "postgres",
- "runtime-tokio",
- "tls-native-tls",
- "chrono",
- "uuid"
- ]}
- thiserror = "2.0.18"
- tokio = "1.52.3"
- uuid = { version="1.23.1", features=["v4", "v7", "serde"] }
- [profile.release]
- opt-level = 3
- lto = "fat"
- codegen-units = 1
- panic = "abort"
- strip = true
- debug = false
- incremental = false
- rpath = false
- overflow-checks = false
|