loonfs-objectstore 0.2.0

The LoonFS object-store boundary: contract, key layout, and providers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Presigned-URL issuing for direct transfers: `direct_put` uploads and
//! `direct_get` downloads.

mod aws_sigv4;
mod issuer;
mod s3_compatible;

pub use issuer::{
    ObjectTransferIssuer, PresignedGetRequest, PresignedPartRequest, PresignedPutRequest,
    PresignedUrl,
};
pub use s3_compatible::{S3CompatiblePresigner, S3PresignerConfig};