bucketwarden-server 0.1.0

BucketWarden storage server runtime.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![allow(unused_imports)]
mod common;
use bucketwarden_lock::{LockError, ObjectLock, RetentionMode};
use bucketwarden_s3::{
    sigv4::{authorization_header, presigned_url_query, sha256_hex, AwsCredentials, SigV4Request},
    *,
};
use bucketwarden_server::*;
use common::*;
use std::collections::BTreeMap;

#[path = "runtime_objects/bucket_listing.rs"]
mod bucket_listing;
#[path = "runtime_objects/object_lifecycle.rs"]
mod object_lifecycle;
#[path = "runtime_objects/version_listing.rs"]
mod version_listing;