Update deps

This commit is contained in:
2024-04-25 16:22:01 +02:00
parent 547418859e
commit 39a77df44f
3 changed files with 344 additions and 217 deletions

527
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -12,30 +12,30 @@ members = [
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
once_cell = "1.18.0"
once_cell = "1.19.0"
prisma-client-rust = { git = "https://github.com/Brendonovich/prisma-client-rust", tag = "0.6.10", default-features = false, features = ["postgresql"] }
serde = { version = "1.0.193", features = ["derive"] }
serde_json = "1.0.108"
reqwest = { version = "0.11.22", features = ["json", "stream", "multipart"] }
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
reqwest = { version = "0.12.4", features = ["json", "stream", "multipart"] }
tokio = { version = "1.35.0", features = ["full"] }
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["compat"] }
axum = { version = "0.7.2", features = ["json"] }
axum-prometheus = "0.5.0"
chrono = "0.4.31"
sentry = { version = "0.32.0", features = ["debug-images"] }
axum = { version = "0.7.5", features = ["json"] }
axum-prometheus = "0.6.1"
chrono = "0.4.38"
sentry = { version = "0.32.3", features = ["debug-images"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
tower-http = { version = "0.5.0", features = ["trace"] }
tower-http = { version = "0.5.2", features = ["trace"] }
base64 = "0.21.5"
base64 = "0.22.0"
futures = "0.3.29"
futures-core = "0.3.29"
futures = "0.3.30"
futures-core = "0.3.30"
async-stream = "0.3.5"
minio-rsc = "0.2.0"
tempfile = "3.8.1"
bytes = "1.5.0"
minio-rsc = "0.2.2"
tempfile = "3.10.1"
bytes = "1.6.0"

View File

@@ -38,7 +38,7 @@ pub fn get_internal_minio() -> Minio {
}
pub fn get_stream(
mut temp_file: Box<dyn Read + Send>,
mut temp_file: Box<dyn Read + Send + Sync>,
) -> impl futures_core::Stream<Item = Result<Bytes, Error>> {
stream! {
let mut buf = [0; 2048];