Milestone 1

This commit is contained in:
sam
2026-05-03 11:24:13 +02:00
parent 7dbb940107
commit 43483c2145
16 changed files with 1576 additions and 20 deletions

15
server_node/Cargo.toml Normal file
View File

@@ -0,0 +1,15 @@
[package]
name = "server_node"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.102"
core_protocol = { version = "0.1.0", path = "../core_protocol" }
dashmap = "6.1.0"
futures = "0.3.32"
tokio = { version = "1.52.1", features = ["full"] }
tokio-serde = { version = "0.9.0", features = ["bincode"] }
tokio-util = { version = "0.7.18", features = ["codec"] }
tracing = "0.1.44"
tracing-subscriber = "0.3.23"