2021-03-26 21:32:09 +00:00
|
|
|
//! Crate for serving a S3 compatible API
|
2020-04-24 10:10:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
|
2022-01-06 11:55:49 +00:00
|
|
|
pub mod error;
|
2021-03-26 21:32:09 +00:00
|
|
|
pub use error::Error;
|
2020-11-08 14:04:30 +00:00
|
|
|
|
2021-03-26 21:32:09 +00:00
|
|
|
mod encoding;
|
2020-04-28 10:18:14 +00:00
|
|
|
|
2021-03-26 21:32:09 +00:00
|
|
|
mod api_server;
|
|
|
|
pub use api_server::run_api_server;
|
2020-04-24 18:47:11 +00:00
|
|
|
|
2021-03-26 21:32:09 +00:00
|
|
|
mod signature;
|
|
|
|
|
2021-11-11 10:26:02 +00:00
|
|
|
pub mod helpers;
|
2021-04-27 23:05:40 +00:00
|
|
|
mod s3_bucket;
|
2021-03-26 21:32:09 +00:00
|
|
|
mod s3_copy;
|
2022-01-07 15:23:04 +00:00
|
|
|
pub mod s3_cors;
|
2021-03-26 21:32:09 +00:00
|
|
|
mod s3_delete;
|
2020-04-24 18:47:11 +00:00
|
|
|
pub mod s3_get;
|
2021-03-26 21:32:09 +00:00
|
|
|
mod s3_list;
|
|
|
|
mod s3_put;
|
2021-12-06 14:17:47 +00:00
|
|
|
mod s3_router;
|
2021-12-15 09:41:39 +00:00
|
|
|
mod s3_website;
|
2021-05-03 20:45:42 +00:00
|
|
|
mod s3_xml;
|