30 lines
992 B
Rust
30 lines
992 B
Rust
//! Shared data types and the frame codec for Boxmaker. No policy and no I/O beyond frames.
|
|
|
|
pub mod audit;
|
|
pub mod chain;
|
|
pub mod class;
|
|
pub mod frame;
|
|
pub mod grant;
|
|
pub mod hash;
|
|
pub mod hosts;
|
|
pub mod ids;
|
|
pub mod log;
|
|
pub mod tools;
|
|
pub mod wire;
|
|
|
|
pub use audit::{
|
|
ApprovalAnswer, AuditEvent, AuditRecord, DecisionRecord, ResultStatus, is_audit_log_name,
|
|
};
|
|
pub use chain::{ChainFailure, ChainReport, ChainVerifier, Location, TornTail};
|
|
pub use class::DataClass;
|
|
pub use frame::{FrameError, MAX_FRAME, read_frame, write_frame};
|
|
pub use grant::{Constraints, Grant, Mode};
|
|
pub use hash::{HashError, Sha256, sha256};
|
|
pub use ids::{CallId, Epoch, Hash32, SessionId, Timestamp, ValueError};
|
|
pub use log::{LogRecord, ToolCall, Usage};
|
|
pub use wire::{
|
|
ApprovalList, Approve, ApproveResult, DenyReason, Empty, Envelope, ErrorCode, GrantProblem,
|
|
GrantsReport, Message, PROTOCOL_VERSION, PendingApproval, Refuse, ToolRequest, ToolResponse,
|
|
Turn, TurnDone, TurnEvent, WireError,
|
|
};
|