Update dependencies #148

Merged
kdeng00 merged 7 commits from update_dependencies into v0.2 2025-06-29 17:15:21 -04:00
2 changed files with 367 additions and 221 deletions
Generated
+357 -211
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -5,25 +5,25 @@ edition = "2024"
rust-version = "1.88" rust-version = "1.88"
[dependencies] [dependencies]
axum = { version = "0.8.3", features = ["multipart"] } axum = { version = "0.8.4", features = ["multipart"] }
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.219", features = ["derive"] }
serde_json = { version = "1.0.140" } serde_json = { version = "1.0.140" }
tower = { version = "0.5.2" } tower = { version = "0.5.2" }
tokio = { version = "1.44.2", features = ["full"] } tokio = { version = "1.45.1", features = ["full"] }
tokio-util = { version = "0.7.14" } tokio-util = { version = "0.7.15" }
tower-http = { version = "0.6.2", features = ["timeout"] } tower-http = { version = "0.6.6", features = ["timeout"] }
tracing-subscriber = "0.3.19" tracing-subscriber = "0.3.19"
# mime = { version = "0.3.17" } # mime = { version = "0.3.17" }
# mime_guess = { version = "2.0.5" } # mime_guess = { version = "2.0.5" }
futures = { version = "0.3.31" } futures = { version = "0.3.31" }
uuid = { version = "1.16.0", features = ["v4", "serde"] } uuid = { version = "1.17.0", features = ["v4", "serde"] }
sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] } sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] }
time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] } time = { version = "0.3.41", features = ["formatting", "macros", "parsing", "serde"] }
icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.1.30" } icarus_meta = { git = "ssh://git@git.kundeng.us/phoenix/icarus_meta.git", tag = "v0.3.0-devel-f4b71de969-680" }
icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.4.3" } icarus_models = { git = "ssh://git@git.kundeng.us/phoenix/icarus_models.git", tag = "v0.5.0-devel-7958b89abc-111" }
icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.2.0" } icarus_envy = { git = "ssh://git@git.kundeng.us/phoenix/icarus_envy.git", tag = "v0.3.0-devel-d73fba9899-006" }
[dev-dependencies] [dev-dependencies]
common-multipart-rfc7578 = { version = "0.7.0" } common-multipart-rfc7578 = { version = "0.7.0" }
url = { version = "2.5.4" } url = { version = "2.5.4" }
tempfile = { version = "3.19.1" } tempfile = { version = "3.20.0" }