This commit is contained in:
Peter Schiwy
2024-06-20 14:50:36 +02:00
parent 1d60fc5a3f
commit 44931afbe7
23 changed files with 431 additions and 25 deletions

View File

@@ -12,7 +12,6 @@ async-graphql = { version = "7.0.5", default-features = false, features = [
'graphiql',
'playground',
] }
uuid = { version = "1.8.0", features = ["serde", "v4"] }
axum = { version = "0.7.5", features = ["macros"] }
sqlx = { version = "0.7.4", features = [
"runtime-tokio-native-tls",
@@ -21,11 +20,20 @@ sqlx = { version = "0.7.4", features = [
"chrono",
"macros",
] }
anyhow = "1.0.53"
async-graphql-axum = "7.0.5"
chrono = { version = "0.4.19", features = ["serde"] }
anyhow = "1.0.86"
async-graphql-axum = "7.0.6"
chrono = { version = "0.4.38", features = ["serde"] }
dotenv = "0.15.0"
envy = "0.4.2"
env_logger = "0.11.3"
log = "0.4.14"
serde = "1.0.136"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
log = "0.4.21"
serde = "1.0.203"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }
# UUID
uuid = { version = "1.8.0", features = ["serde", "v4"] }
ulid = { version = "1.1.2", features = ["uuid"] }
# Logging
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "chrono"] }