Initial commit, basic graphql server setup

This commit is contained in:
Zeph Levy 2025-09-30 08:40:31 +02:00
commit c9f39a3d37
4 changed files with 1647 additions and 0 deletions

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "city_portal"
version = "0.1.0"
edition = "2024"
[dependencies]
tokio = { version = "1", features = ["full"] }
axum = "0.8"
async-graphql = "7"
async-graphql-axum = "7"