mirror of
https://github.com/rustfs/rustfs.git
synced 2026-08-18 10:43:15 +00:00
move disk::utils to crates::utils
This commit is contained in:
+14
-5
@@ -1,17 +1,17 @@
|
||||
#[cfg(feature = "tls")]
|
||||
mod certs;
|
||||
pub mod certs;
|
||||
#[cfg(feature = "ip")]
|
||||
mod ip;
|
||||
pub mod ip;
|
||||
#[cfg(feature = "net")]
|
||||
mod net;
|
||||
pub mod net;
|
||||
#[cfg(feature = "net")]
|
||||
pub use net::*;
|
||||
|
||||
#[cfg(feature = "io")]
|
||||
mod io;
|
||||
pub mod io;
|
||||
|
||||
#[cfg(feature = "hash")]
|
||||
mod hash;
|
||||
pub mod hash;
|
||||
|
||||
#[cfg(feature = "os")]
|
||||
pub mod os;
|
||||
@@ -19,6 +19,12 @@ pub mod os;
|
||||
#[cfg(feature = "path")]
|
||||
pub mod path;
|
||||
|
||||
#[cfg(feature = "string")]
|
||||
pub mod string;
|
||||
|
||||
#[cfg(feature = "crypto")]
|
||||
pub mod crypto;
|
||||
|
||||
#[cfg(feature = "tls")]
|
||||
pub use certs::*;
|
||||
#[cfg(feature = "hash")]
|
||||
@@ -27,3 +33,6 @@ pub use hash::*;
|
||||
pub use io::*;
|
||||
#[cfg(feature = "ip")]
|
||||
pub use ip::*;
|
||||
|
||||
#[cfg(feature = "crypto")]
|
||||
pub use crypto::*;
|
||||
|
||||
Reference in New Issue
Block a user