* Add Cloudflare R2 impl

* Bump actix version

* Fix sec issues
This commit is contained in:
Geometrically
2022-10-22 21:23:31 -07:00
committed by GitHub
parent 07edb998e4
commit 6e72be54cb
18 changed files with 265 additions and 181 deletions

View File

@@ -13,12 +13,12 @@ path = "src/main.rs"
[dependencies]
actix = "0.13.0"
actix-web = "4.1.0"
actix-web = "4.2.1"
actix-rt = "2.7.0"
tokio = { version = "1.19.0", features = ["sync"] }
tokio-stream = "0.1.8"
actix-multipart = "0.4.0"
actix-cors = "0.6.1"
actix-cors = "0.6.3"
meilisearch-sdk = "0.15.0"
reqwest = { version = "0.11.10", features = ["json"] }
@@ -30,7 +30,7 @@ xml-rs = "0.8.4"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_with = "1.12.0"
chrono = { version = "0.4.19", features = ["serde"]}
chrono = { version = "0.4.22", default-features = false, features = ["clock", "serde", "std"] }
rand = "0.8.5"
base64 = "0.13.0"
sha1 = { version = "0.6.1", features = ["std"] }
@@ -45,7 +45,7 @@ url = "2.2.2"
urlencoding = "2.1.0"
gumdrop = "0.8.1"
dotenv = "0.15.0"
dotenvy = "0.15.6"
log = "0.4.16"
env_logger = "0.9.0"
thiserror = "1.0.30"
@@ -53,7 +53,7 @@ lazy_static = "1.4.0"
futures = "0.3.21"
futures-timer = "3.0.2"
rust-s3 = "0.30.0"
rust-s3 = "0.32.3"
async-trait = "0.1.53"
sqlx = { version = "0.6.0", features = ["runtime-actix-rustls", "postgres", "chrono", "offline", "macros", "migrate"] }