rc_s3/lib.rs
1//! rc-s3: S3 SDK adapter for rc CLI client
2//!
3//! This crate provides the implementation of the ObjectStore trait
4//! using the aws-sdk-s3 crate. It is the only crate that directly
5//! depends on the AWS SDK.
6
7pub mod admin;
8pub mod client;
9pub mod multipart;
10mod select;
11
12pub use admin::AdminClient;
13pub use client::{DeleteRequestOptions, S3Client};
14pub use multipart::{MultipartConfig, UploadState};