Skip to main content

object_storage_proxy/parsers/
mod.rs

1//! Nom-based parsers for paths, query strings, credentials, and the COS map.
2//!
3//! Sub-modules:
4//! * [`cos_map`] — parse the Python `cos_map` dict into [`cos_map::CosMapItem`] structs.
5//! * [`credentials`] — parse `Authorization` headers and presigned URL parameters.
6//! * [`keystore`] — parse the Python HMAC keystore list.
7//! * [`path`] — parse S3-style request paths and query strings.
8
9pub mod cos_map;
10pub mod credentials;
11pub mod keystore;
12pub mod path;