Skip to main content

arcp_actix_web/
lib.rs

1//! # arcp-actix-web
2//!
3//! actix-web integration for the Agent Runtime Control Protocol (ARCP).
4//!
5//! ## Status: placeholder
6//!
7//! This crate is published as a name reservation. A real actix-web
8//! integration — handler factory, WebSocket upgrade, and `ARCPRuntime`
9//! adapter — is planned for a future minor release. The current version
10//! re-exports [`arcp_core`] so dependents can prepare imports.
11//!
12//! Follow <https://github.com/agentruntimecontrolprotocol/rust-sdk> for
13//! progress.
14
15#![deny(unsafe_code)]
16#![deny(missing_docs)]
17#![warn(unreachable_pub)]
18
19pub use arcp_core;