dx-dcp 0.0.1

Development Context Protocol - binary-first replacement for MCP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Binary message types for DCP protocol.

pub mod envelope;
pub mod hbtp;
pub mod invocation;
pub mod signed;
pub mod stream;

pub use envelope::{BinaryMessageEnvelope, Flags, MessageType};
pub use hbtp::HbtpHeader;
pub use invocation::{ArgType, ToolInvocation};
pub use signed::{SignedInvocation, SignedToolDef};
pub use stream::{ChunkFlags, StreamChunk};