acmex 0.8.0

AcmeX: High-performance, extensible ACME v2 (RFC 8555) client and server in Rust, supporting multiple DNS providers, storage backends, and crypto libraries.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
/// Transport layer for AcmeX.
/// This module provides the HTTP client, retry policies, rate limiting,
/// and middleware support for all network communications with ACME servers.
pub mod http_client;
pub mod middleware;
pub mod rate_limit;
pub mod retry;

// Re-exports for convenient access to transport utilities
pub use http_client::HttpClient;
pub use middleware::{Middleware, MiddlewareChain};
pub use rate_limit::RateLimiter;
pub use retry::{RetryPolicy, RetryStrategy};