Skip to main content

s3util_rs/
lib.rs

1//! This crate is intended to be used as a binary crate (`s7cmd`) and is not
2//! intended for use as a library in any way. The public items below exist
3//! only to support the binary and integration tests; no API stability is
4//! provided and external consumers should not depend on them.
5
6#![allow(clippy::collapsible_if)]
7#![allow(clippy::assertions_on_constants)]
8#![allow(clippy::unnecessary_unwrap)]
9
10pub mod config;
11pub mod input;
12pub mod output;
13pub mod storage;
14pub mod transfer;
15pub mod types;
16
17pub use config::Config;