mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-28 09:08:58 +00:00
cd1e244c68
* feat: adapt to s3s typed etag support * refactor: move replication struct to rustfs_filemeta, fix filemeta transition bug * add head_object checksum, filter object metadata output * fix multipart checksum * fix multipart checksum * add content md5,sha256 check * fix test * fix cargo --------- Co-authored-by: overtrue <anzhengchao@gmail.com>
59 lines
1.4 KiB
Rust
59 lines
1.4 KiB
Rust
#![allow(dead_code)]
|
|
// Copyright 2024 RustFS Team
|
|
//
|
|
// 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.
|
|
|
|
extern crate core;
|
|
|
|
pub mod admin_server_info;
|
|
pub mod batch_processor;
|
|
pub mod bitrot;
|
|
pub mod bucket;
|
|
pub mod cache_value;
|
|
mod chunk_stream;
|
|
pub mod compress;
|
|
pub mod config;
|
|
pub mod data_usage;
|
|
pub mod disk;
|
|
pub mod disks_layout;
|
|
pub mod endpoints;
|
|
pub mod erasure_coding;
|
|
pub mod error;
|
|
pub mod file_cache;
|
|
pub mod global;
|
|
pub mod metrics_realtime;
|
|
pub mod notification_sys;
|
|
pub mod pools;
|
|
pub mod rebalance;
|
|
pub mod rpc;
|
|
pub mod set_disk;
|
|
mod sets;
|
|
pub mod store;
|
|
pub mod store_api;
|
|
mod store_init;
|
|
pub mod store_list_objects;
|
|
pub mod store_utils;
|
|
|
|
// pub mod checksum;
|
|
pub mod client;
|
|
pub mod event;
|
|
pub mod event_notification;
|
|
pub mod tier;
|
|
|
|
pub use global::new_object_layer_fn;
|
|
pub use global::set_global_endpoints;
|
|
pub use global::update_erasure_type;
|
|
|
|
pub use global::GLOBAL_Endpoints;
|
|
pub use store_api::StorageAPI;
|