forked from Deuxfleurs/garage
Alex Auvolat
6ccffc3162
- Use quick_xml and serde for all XML response returned by the S3 API. - Include tests for all structs used to generate XML - Remove old manual XML escaping function which was unsafe
21 lines
288 B
Rust
21 lines
288 B
Rust
//! Crate for serving a S3 compatible API
|
|
#[macro_use]
|
|
extern crate log;
|
|
|
|
mod error;
|
|
pub use error::Error;
|
|
|
|
mod encoding;
|
|
|
|
mod api_server;
|
|
pub use api_server::run_api_server;
|
|
|
|
mod signature;
|
|
|
|
mod s3_bucket;
|
|
mod s3_copy;
|
|
mod s3_delete;
|
|
pub mod s3_get;
|
|
mod s3_list;
|
|
mod s3_put;
|
|
mod s3_xml;
|