Fix gallery creation validation and validators returning incorrect er… (#263)

* Fix gallery creation validation and validators returning incorrect errors

* Remove docker image

* Add URL validation for pack files

* Remove unneeded dependencies
This commit is contained in:
Geometrically
2021-11-30 20:07:23 -07:00
committed by GitHub
parent 6740124364
commit a54b2db81b
11 changed files with 444 additions and 667 deletions

View File

@@ -13,7 +13,7 @@ path = "src/main.rs"
[dependencies]
actix-web = "3.3.2"
actix-rt = "1.1.0"
actix-rt = "1.1.1"
actix-files = "0.5.0"
actix-multipart = "0.3.0"
actix-cors = "0.5.4"
@@ -39,6 +39,7 @@ zip = "0.5.12"
validator = { version = "0.13", features = ["derive"] }
regex = "1.5.4"
url = "2.2.2"
gumdrop = "0.8.0"
dotenv = "0.15"
@@ -57,7 +58,4 @@ sqlx = { version = "0.4.2", features = ["runtime-actix-rustls", "postgres", "chr
sentry = { version = "0.22.0", features = ["log"] }
sentry-actix = "0.22.0"
actix-web-prom = {git = "https://github.com/nlopes/actix-web-prom", branch = "master"}
prometheus = "0.12.0"
bytes = "0.5.6"