[package] name = "api" version = "0.1.0" edition = "2021" authors = ["Ben Sherriff "] repository = "https://github.com/bensherriff/aviation-weather" readme = "README.md" license = "GPL-3.0-or-later" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] actix-web = "4.9.0" actix-cors = "0.7.0" actix-web-httpauth = "0.8.2" actix-multipart = "0.7.2" chrono = { version = "0.4.38", features = ["serde"] } dotenv = "0.15.0" diesel = { version = "2.2.4", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"] } postgis_diesel = { version = "2.4.1", features = ["serde"] } diesel_migrations = { version = "2.2.0", features = ["postgres"] } env_logger = "0.11.5" lazy_static = "1.5.0" r2d2 = "0.8.10" reqwest = "0.12.7" serde = {version = "1.0.209", features = ["derive"]} serde_json = "1.0.127" tokio = { version = "1.40.0", features = ["macros", "rt", "time"] } uuid = { version = "1.10.0", features = ["serde", "v4"] } log = "0.4.22" argon2 = "0.5.3" redis = { version = "0.26.1", features = ["tokio-comp", "connection-manager", "r2d2"] } regex = "1.10.6" futures-util = "0.3.30" rust-s3 = "0.35.1" rand = "0.8.5" rand_chacha = "0.3.1"