tencent_sdk/
lib.rs

1//! Tencent Cloud SDK providing async and blocking TC3-signed HTTP clients,
2//! strongly typed service bindings, and reusable signing helpers.
3//!
4//! The crate exposes:
5//! - [`client`] builders with retryable async and blocking clients.
6//! - [`services`] modules per Tencent Cloud product surface.
7//! - [`signing`] utilities for TC3-HMAC-SHA256 header generation.
8//!
9//! See the `README.md` for detailed usage examples and supported services.
10
11pub mod client;
12pub mod core;
13pub mod middleware;
14pub mod services;
15pub mod signing;
16pub mod transport;