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.
9 lines
281 B
Rust
9 lines
281 B
Rust
//! `CallConnection`: an established `alknet/call` connection (either
|
|
//! direction — accepted or opened). Holds the connection's Layer 2 overlay
|
|
//! (imported ops).
|
|
//!
|
|
//! See `docs/architecture/crates/call/call-protocol.md` for the full
|
|
//! specification.
|
|
|
|
// TODO: implement
|