axum-async-graphql/Cargo.toml

43 lines
993 B
TOML
Raw Normal View History

2024-05-31 00:32:51 +02:00
[package]
name = "axum-async-graphql"
version = "0.1.0"
edition = "2021"
[dependencies]
2024-12-17 14:23:27 +01:00
async-graphql = { version = "7.0.13", default-features = false, features = [
2024-05-31 00:32:51 +02:00
"chrono",
"uuid",
'dataloader',
'dynamic-schema',
'graphiql',
'playground',
] }
2024-12-17 14:23:27 +01:00
axum = { version = "0.7.9", features = ["macros"] }
sqlx = { version = "0.8.2", features = [
2024-05-31 00:32:51 +02:00
"runtime-tokio-native-tls",
"uuid",
"postgres",
"chrono",
"macros",
] }
2024-12-17 14:23:27 +01:00
anyhow = "1.0.94"
async-graphql-axum = "7.0.13"
chrono = { version = "0.4.39", features = ["serde"] }
2024-05-31 00:32:51 +02:00
dotenv = "0.15.0"
envy = "0.4.2"
2024-12-17 14:23:27 +01:00
env_logger = "0.11.5"
log = "0.4.22"
2024-12-17 14:23:27 +01:00
serde = "1.0.216"
tokio = { version = "1.42.0", features = ["macros", "rt-multi-thread"] }
# UUID
uuid = { version = "1.11.0", features = ["serde", "v4", "macro-diagnostics"] }
ulid = { version = "1.1.3", features = ["uuid"] }
# Logging
tracing = "0.1.41"
2024-12-17 14:23:27 +01:00
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "chrono"] }
tracing-appender = "0.2.3"
itertools = "0.13.0"