rc-s3 0.1.6

S3 SDK adapter for rustfs-cli
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! rc-s3: S3 SDK adapter for rc CLI client
//!
//! This crate provides the implementation of the ObjectStore trait
//! using the aws-sdk-s3 crate. It is the only crate that directly
//! depends on the AWS SDK.

pub mod admin;
pub mod capability;
pub mod client;
pub mod multipart;

pub use admin::AdminClient;
pub use client::S3Client;
pub use multipart::{MultipartConfig, UploadState};