Update deps

This commit is contained in:
Joshua Coles 2025-12-28 11:57:12 +00:00
parent bc4aa8242c
commit 0d564ff299
2 changed files with 1482 additions and 743 deletions

2215
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -7,8 +7,8 @@ edition = "2021"
entity = { path = "entity" }
migration = { path = "migration" }
axum = { version = "0.7.5", features = ["multipart"] }
tokio = { version = "1.37.0", features = ["full"] }
axum = { version = "0.8.8", features = ["multipart"] }
tokio = { version = "1.48.0", features = ["full"] }
sea-orm = { version = "1.1.0", features = [
"sqlx-postgres",
"runtime-tokio-rustls",
@ -20,14 +20,14 @@ serde_json = "1.0"
tracing-subscriber = "0.3.18"
tracing = "0.1.40"
anyhow = { version = "1.0", features = ["backtrace"] }
thiserror = "1.0"
thiserror = "2.0"
http = "1.1"
chrono = { version = "0.4", features = ["serde"] }
num-traits = "0.2"
csv = "1.3.0"
clap = "4.5"
testcontainers = "0.21"
testcontainers-modules = { version = "0.9", features = ["postgres"] }
testcontainers = "0.26"
testcontainers-modules = { version = "0.14", features = ["postgres"] }
sqlx = { version = "0.8", features = ["postgres"] }
tower-http = { version = "0.6", features = ["trace"] }
bytes = "1.7"