s3du 1.2.0

Command line utility for showing space used in AWS S3 buckets
1
2
3
4
5
6
7
8
9
10
11
// Imports all of the components needed for s3::client
#![forbid(unsafe_code)]
#![deny(missing_docs)]

/// Implementation of the `BucketSizer` trait for our S3 `Client`.
mod bucket_sizer;

/// S3 `Client`.
mod client;

pub use client::*;