rustack_sts_http/lib.rs
1//! STS HTTP service layer for Rustack (awsQuery protocol).
2//!
3//! STS uses the `awsQuery` protocol, identical wire format to SNS.
4//! Requests are `application/x-www-form-urlencoded` with `Action=<op>` dispatch.
5//! Responses are `text/xml`. Gateway routing uses SigV4 `service=sts`.
6
7pub mod body;
8pub mod dispatch;
9pub mod request;
10pub mod response;
11pub mod router;
12pub mod service;