2022-08-21 03:40:11 +05:30
|
|
|
// MinIO Rust Library for Amazon S3 Compatible Cloud Storage
|
|
|
|
|
// Copyright 2022 MinIO, Inc.
|
|
|
|
|
//
|
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
//
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
//
|
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
2023-09-26 05:16:11 +05:30
|
|
|
//! Implementation of Simple Storage Service (aka S3) client
|
|
|
|
|
|
2024-04-02 17:39:40 -07:00
|
|
|
pub mod builders;
|
2022-08-21 03:40:11 +05:30
|
|
|
pub mod client;
|
|
|
|
|
pub mod creds;
|
|
|
|
|
pub mod error;
|
2025-08-15 06:31:45 +02:00
|
|
|
pub mod header_constants;
|
2022-08-21 03:40:11 +05:30
|
|
|
pub mod http;
|
2025-05-15 19:14:40 +02:00
|
|
|
pub mod lifecycle_config;
|
2025-08-15 06:31:45 +02:00
|
|
|
pub mod minio_error_response;
|
2025-04-23 19:18:18 +02:00
|
|
|
pub mod multimap;
|
|
|
|
|
mod object_content;
|
2022-08-21 03:40:11 +05:30
|
|
|
pub mod response;
|
2025-04-23 19:18:18 +02:00
|
|
|
pub mod segmented_bytes;
|
2022-08-21 03:40:11 +05:30
|
|
|
pub mod signer;
|
|
|
|
|
pub mod sse;
|
|
|
|
|
pub mod types;
|
|
|
|
|
pub mod utils;
|
2024-04-05 19:39:45 -07:00
|
|
|
|
|
|
|
|
pub use client::{Client, ClientBuilder};
|