rustack-sqs-http 0.6.0

SQS HTTP service layer for Rustack
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! SQS HTTP service layer for Rustack.
//!
//! This crate implements the HTTP transport for SQS, handling:
//! - Request routing via `X-Amz-Target: AmazonSQS.*` header
//! - JSON request/response serialization (`awsJson1_0` protocol)
//! - Error formatting with `x-amzn-query-error` compatibility header
//! - Optional SigV4 authentication

pub mod body;
pub mod dispatch;
pub mod response;
pub mod router;
pub mod service;