Currently, there is only a `gateway` crate, but in the future, likely more will be added to handle db stuff, abstractions, etc once I actually start implementing the city portal logic itself.
13 lines
253 B
TOML
13 lines
253 B
TOML
[package]
|
|
name = "city_portal"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[workspace.dependencies]
|
|
tokio = { version = "1", features = ["full"] }
|
|
axum = "0.8"
|
|
async-graphql = "7"
|
|
async-graphql-axum = "7"
|
|
|
|
[dependencies]
|
|
gateway = { path = "services/gateway" }
|