s3-server 0.2.0

An experimental generic S3 server
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! utils

mod also;
mod apply;
mod response;
mod xml;

pub use self::also::Also;
pub use self::apply::Apply;
pub use self::response::ResponseExt;
pub use self::xml::XmlWriterExt;

pub mod body;
pub mod crypto;
pub mod time;