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