s3sync 1.58.6

Reliable, flexible, and fast synchronization tool for S3.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod build_config;
mod options;
mod parse_credentials;
mod parse_storage;

#[test]
fn is_express_onezone_storage_test() {
    use super::*;

    assert!(is_express_onezone_storage("bucket--x-s3"));

    assert!(!is_express_onezone_storage("bucket-x-s3"));
    assert!(!is_express_onezone_storage("bucket--x-s3s"));
    assert!(!is_express_onezone_storage("bucket"));
}