feat(core): implement AlknetEndpoint, HandlerRegistry, accept loops (quinn + iroh), TLS identity (RawKey/X509/SelfSigned), and graceful shutdown (task: core/endpoint)

This commit is contained in:
2026-06-23 15:12:14 +00:00
parent dabb0d8b68
commit 8d056a2b59
3 changed files with 994 additions and 2 deletions

View File

@@ -20,6 +20,7 @@ quinn = { version = "0.11", optional = true }
iroh = { version = "0.35", optional = true }
rustls = "0.23"
rustls-pki-types = "1"
rustls-pemfile = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
@@ -31,4 +32,6 @@ zeroize = { version = "1", features = ["alloc", "derive"] }
bytes = "1"
futures = "0.3"
sha2 = "0.10"
hex = "0.4"
hex = "0.4"
rand = "0.8"
rcgen = "0.13"