hexz-store 0.8.0

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

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

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