feat(http): initialize alknet-http crate with module skeleton
Add crates/alknet-http with Cargo.toml, src/lib.rs, and the five subsystem modules (server, gateway, client, adapters, websocket) per ADR-039 (server + client host colocated). The mcp feature gate pulls in rmcp with streamable HTTP transport features only (ADR-037 — no stdio); h3/WebTransport is absent (deferred per ADR-044). alknet-core and alknet-call use workspace path deps. The crate is added to the workspace members list.
This commit is contained in:
11
crates/alknet-http/src/adapters/mod.rs
Normal file
11
crates/alknet-http/src/adapters/mod.rs
Normal file
@@ -0,0 +1,11 @@
|
||||
//! HTTP-backed call-protocol adapters: `from_openapi`, `to_openapi`,
|
||||
//! `from_mcp`, `to_mcp`.
|
||||
//!
|
||||
//! `from_openapi`/`from_mcp` are the no-env-vars credential injection point
|
||||
//! (ADR-014); `to_openapi`/`to_mcp` are projections of the local registry
|
||||
//! (ADR-017). `from_mcp`/`to_mcp` are feature-gated behind `mcp`
|
||||
//! (streamable HTTP only — ADR-037). See
|
||||
//! `docs/architecture/crates/http/http-adapters.md` and
|
||||
//! `docs/architecture/crates/http/http-mcp.md`.
|
||||
|
||||
// TODO: implement
|
||||
Reference in New Issue
Block a user