- add: character and world service stubs

This commit is contained in:
2024-12-13 04:46:18 -05:00
parent 38ea2ddb71
commit 51e2fef9df
5 changed files with 156 additions and 0 deletions

18
world-service/Cargo.toml Normal file
View File

@@ -0,0 +1,18 @@
[package]
name = "world-service"
version = "0.1.0"
edition = "2021"
[dependencies]
utils = { path = "../utils" }
dotenv = "0.15"
tokio = { version = "1.41.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
tracing = "0.1"
tracing-subscriber = "0.3.18"
tonic = "0.12.3"
prost = "0.13.4"
warp = "0.3.7"
[build-dependencies]
tonic-build = "0.12.3"