acdp_server/lib.rs
1//! # acdp-server — registry-side building blocks for the Agent Context Distribution Protocol
2//!
3//! Server-side primitives consumed by separate `acdp-registry-*` crates:
4//! [`registry::PublishValidator`], [`registry::RegistryServer`],
5//! [`registry::InMemoryStore`], rate-limiting traits, the shared SSRF
6//! policy re-export, and cursor [`pagination`]. This crate does not host a
7//! real HTTP server.
8
9pub mod pagination;
10pub mod registry;