feat(call): initialize alknet-call crate skeleton (task: call/crate-init)

Create crates/alknet-call with Cargo.toml, lib.rs, and module skeletons
for the registry (spec, context, registration, env, discovery) and
protocol (wire, pending, connection, adapter, abort) subsystems. Add the
crate to the workspace members list. Depends on alknet-core (workspace
path), irpc (workspace dep), tokio, serde, serde_json, async-trait,
tracing, thiserror, uuid, and futures. Implements ProtocolHandler on
ALPN alknet/call per docs/architecture/crates/call.
This commit is contained in:
2026-06-23 13:45:14 +00:00
parent 968e3a09ee
commit e13a150d9f
16 changed files with 536 additions and 28 deletions

View File

@@ -0,0 +1,7 @@
//! Pending request tracking: `PendingRequestMap` and `PendingEntry`.
//!
//! Correlates `call.responded` events back to the original `call.requested`
//! by request ID. See `docs/architecture/crates/call/call-protocol.md` for
//! the full specification.
// TODO: implement