s3 0.1.27

A lean, modern, unofficial S3-compatible client for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod cache;
mod model;
mod provider;

#[cfg(test)]
mod tests;

#[cfg(any(feature = "async", feature = "blocking"))]
pub use cache::CachedProvider;
pub use model::{AddressingStyle, Auth, Credentials, CredentialsSnapshot, Region};
#[cfg(feature = "async")]
pub use provider::CredentialsFuture;
pub use provider::{CredentialsProvider, CredentialsTlsRootStore, DynCredentialsProvider};