Parse the compact METAR code instead of parsing xml

This commit is contained in:
2023-11-22 00:15:26 -05:00
parent 2e048fb1a0
commit d6f4f6e2a9
6 changed files with 540 additions and 394 deletions

View File

@@ -16,7 +16,7 @@ actix-web-httpauth = "0.8.1"
actix-multipart = "0.6.1"
chrono = { version = "0.4.31", features = ["serde"] }
dotenv = "0.15.0"
diesel = { version = "2.1.2", features = ["postgres", "r2d2", "uuid", "chrono"] }
diesel = { version = "2.1.2", features = ["postgres", "r2d2", "uuid", "chrono", "serde_json"] }
postgis_diesel = { version = "2.2.1", features = ["serde"] }
diesel_migrations = { version = "2.1.0", features = ["postgres"] }
env_logger = "0.10.0"
@@ -33,3 +33,4 @@ argon2 = "0.5.2"
jsonwebtoken = "9.0.0"
redis = { version = "0.23.3", features = ["tokio-comp", "connection-manager", "r2d2"] }
rustix = "0.38.19" # https://github.com/imsnif/bandwhich/issues/284
regex = "1.10.2"