mirror of
https://github.com/rustfs/rustfs.git
synced 2026-07-26 08:18:18 +00:00
refactor: Restructure project layout and clean up dependencies (#30)
This commit introduces a significant reorganization of the project structure to improve maintainability and clarity. Key changes include: - Adjusted the directory layout for a more logical module organization. - Removed unused crate dependencies, reducing the overall project size and potentially speeding up build times. - Updated import paths and configuration files to reflect the structural changes.
This commit is contained in:
@@ -22,7 +22,7 @@ version.workspace = true
|
||||
|
||||
|
||||
[dependencies]
|
||||
async-compression = { version = "0.4.0", features = [
|
||||
async-compression = { workspace = true, features = [
|
||||
"tokio",
|
||||
"bzip2",
|
||||
"gzip",
|
||||
@@ -30,12 +30,9 @@ async-compression = { version = "0.4.0", features = [
|
||||
"zstd",
|
||||
"xz",
|
||||
] }
|
||||
async_zip = { version = "0.0.17", features = ["tokio"] }
|
||||
zip = { workspace = true }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
tokio-stream = { workspace = true }
|
||||
tokio-tar = { workspace = true }
|
||||
xz2 = { version = "0.1", optional = true, features = ["static"] }
|
||||
|
||||
|
||||
[lints]
|
||||
|
||||
Reference in New Issue
Block a user