Skip to main content

arcp_otel/
lib.rs

1//! # arcp-otel
2//!
3//! OpenTelemetry middleware for the Agent Runtime Control Protocol (ARCP).
4//!
5//! ## Status: placeholder
6//!
7//! This crate is published as a name reservation. A real OpenTelemetry
8//! integration — automatic span emission from ARCP `trace.span` messages,
9//! attribute mapping, and a `tracing` bridge — is planned for a future
10//! minor release. The current version re-exports [`arcp_core`] so
11//! dependents can prepare imports.
12//!
13//! Follow <https://github.com/agentruntimecontrolprotocol/rust-sdk> for
14//! progress.
15
16#![deny(unsafe_code)]
17#![deny(missing_docs)]
18#![warn(unreachable_pub)]
19
20pub use arcp_core;