hexz-store 0.8.2

Storage backends for Hexz snapshots (local file, HTTP, S3)
Documentation
1
2
3
4
5
6
7
8
9
//! S3-compatible object storage backend (feature-gated).

#[cfg(feature = "s3")]
pub mod async_client;
#[cfg(feature = "s3")]
pub mod remote;

#[cfg(feature = "s3")]
pub use async_client::S3Backend;