initial http server

This commit is contained in:
2024-10-19 18:22:04 -07:00
parent c9bf33ab6c
commit 4d5b525288
5 changed files with 997 additions and 100 deletions

View File

@@ -11,8 +11,14 @@ log = "0.4.22"
prost = "0.13.3"
rand = "0.8.5"
tonic = { version = "0.12.3" }
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }
tokio = { version = "1.40.0", features = ["rt-multi-thread", "signal"] }
chrono = "0.4.38"
actix-web = "4.9.0"
actix-ws = "0.3.0"
tokio-util = "0.7.12"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.132"
derive_more = { version = "1.0.0", features = ["full"] }
[build-dependencies]
tonic-build = "0.12.3"