First Commit

This commit is contained in:
Peter Schiwy
2024-05-31 00:32:51 +02:00
commit bab592edf1
23 changed files with 3268 additions and 0 deletions

31
Cargo.toml Normal file
View File

@@ -0,0 +1,31 @@
[package]
name = "axum-async-graphql"
version = "0.1.0"
edition = "2021"
[dependencies]
async-graphql = { version = "7.0.5", default-features = false, features = [
"chrono",
"uuid",
'dataloader',
'dynamic-schema',
'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",
"uuid",
"postgres",
"chrono",
"macros",
] }
anyhow = "1.0.53"
async-graphql-axum = "7.0.5"
chrono = { version = "0.4.19", features = ["serde"] }
dotenv = "0.15.0"
env_logger = "0.11.3"
log = "0.4.14"
serde = "1.0.136"
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }