atproto-client 0.6.0

HTTP client for AT Protocol services with OAuth and identity integration
Documentation
//! # AT Protocol HTTP Client
//!
//! Comprehensive HTTP client functionality for AT Protocol services with support for
//! authenticated requests, DPoP authentication, and structured error handling.
//!
//! ## Features
//!
//! - **Authenticated HTTP Requests**: DPoP-based authentication for secure API access
//! - **URL Building**: Utilities for constructing AT Protocol service URLs
//! - **Error Handling**: Structured error types for client operations
//! - **Repository Operations**: Built-in support for AT Protocol repository endpoints
//!
//! ## Modules
//!
//! - [`client`]: Core HTTP client with authentication support
//! - [`errors`]: Structured error types for client operations
//! - [`url`]: URL building utilities for AT Protocol services
//! - [`com::atproto::repo`]: Repository operation implementations
//!
//! ## CLI Tools
//!
//! This crate provides the following binary tools:
//!
//! - **`atproto-client-dpop`**: Command-line tool for making authenticated XRPC calls
//!   using DPoP authentication

#![warn(missing_docs)]

pub mod client;
pub mod errors;
pub mod url;

mod com_atproto_repo;

/// AT Protocol namespace modules.
pub mod com {
    /// AT Protocol core modules.
    pub mod atproto {
        /// Repository operations for AT Protocol records.
        pub mod repo {
            pub use crate::com_atproto_repo::*;
        }
    }
}