1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! # 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
/// AT Protocol namespace modules.