arcp_tower/lib.rs
1//! # arcp-tower
2//!
3//! Tower middleware for the Agent Runtime Control Protocol (ARCP).
4//!
5//! ## Status: placeholder
6//!
7//! This crate is published as a name reservation. A real `tower::Service`
8//! integration that bridges HTTP-style transports into the ARCP runtime is
9//! planned for a future minor release. The current version re-exports
10//! [`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;