Rename project to quicnprotochat

This commit is contained in:
2026-02-21 23:37:40 +01:00
parent c9d295c510
commit 3bf3ab23e2
32 changed files with 3370 additions and 1132 deletions

View File

@@ -1,10 +1,10 @@
[workspace]
resolver = "2"
members = [
"crates/noiseml-core",
"crates/noiseml-proto",
"crates/noiseml-server",
"crates/noiseml-client",
"crates/quicnprotochat-core",
"crates/quicnprotochat-proto",
"crates/quicnprotochat-server",
"crates/quicnprotochat-client",
]
# Shared dependency versions — bump here to affect the whole workspace.
@@ -27,6 +27,9 @@ sha2 = { version = "0.10" }
hkdf = { version = "0.12" }
zeroize = { version = "1", features = ["derive"] }
rand = { version = "0.8" }
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
bincode = { version = "1" }
# ── Serialisation + RPC ───────────────────────────────────────────────────────
capnp = { version = "0.19" }
@@ -36,6 +39,10 @@ capnp-rpc = { version = "0.19" }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["codec", "compat"] }
futures = { version = "0.3" }
quinn = { version = "0.11" }
quinn-proto = { version = "0.11" }
rustls = { version = "0.23", default-features = false, features = ["std"] }
rcgen = { version = "0.13" }
# ── Server utilities ──────────────────────────────────────────────────────────
dashmap = { version = "5" }