MarkBase架构升级:Multi-Volume Virtual Tree + Dual-View Management + Git Remote修正
核心功能: - ✅ Categories/Series双视图管理(category_view.rs + import_markdown.rs) - ✅ FUSE Multi-Volume支持(tree_type参数) - ✅ SSH/SFTP/SCP/rsync协议完整实现(4042行) - ✅ NFS/SMB Module Phase 1-3完成 - ✅ Archive Module Phase 1-4完成(2916行) - ✅ Download Center API完整实现 - ✅ S3兼容API实现(560行) Git配置修正: - ✅ 删除错误origin(gitea.momentry.ddns.net) - ✅ 删除m5max128(指向机器名) - ✅ 设置origin = m5max128gitea.momentry.ddns.net/admin/markbase - ✅ 设置m4minigitea = m4minigitea.momentry.ddns.net/warren/markbase 数据清理: - ✅ 删除38个临时SQLite(保留accusys.sqlite、demo.sqlite) - ✅ 删除.bak、test_*.bin、调试脚本等临时文件 - ✅ 删除临时目录(build/、download files/、raid_test/等) - ✅ 更新.gitignore排除临时文件 架构优化: - 52个文件修改,2434行新增,4739行删除 - Workspace成员整合(16个crate) - 数据库状态:accusys.sqlite保留(主demo测试) 远程同步: - ✅ 准备推送到m5max128gitea(远程Gitea) - ✅ 准备推送到m4minigitea(本地Gitea)
This commit is contained in:
99
Cargo.toml
99
Cargo.toml
@@ -1,82 +1,17 @@
|
||||
[package]
|
||||
name = "markbase"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "Momentry Display Engine"
|
||||
|
||||
[[bin]]
|
||||
name = "markbase"
|
||||
path = "src/main.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "webdav_server"
|
||||
path = "src/bin/webdav_server.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4", features = ["derive"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
pulldown-cmark = "0.13"
|
||||
axum = "0.8"
|
||||
axum-extra = { version = "0.10", features = ["multipart"] }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
tokio-util = { version = "0.7", features = ["io"] }
|
||||
mime_guess = "2"
|
||||
tower = "0.5"
|
||||
anyhow = "1"
|
||||
uuid = { version = "1", features = ["v4"] }
|
||||
rusqlite = { version = "0.32", features = ["bundled"] }
|
||||
chrono = { version = "0.4", features = ["serde"] }
|
||||
async-trait = "0.1"
|
||||
once_cell = "1"
|
||||
sha2 = "0.10"
|
||||
jsonwebtoken = "9"
|
||||
bcrypt = "0.15"
|
||||
tokio-postgres = "0.7"
|
||||
postgres-types = { version = "0.2", features = ["with-chrono-0_4"] }
|
||||
log = "0.4"
|
||||
toml = "0.8"
|
||||
|
||||
# FUSE dependencies
|
||||
time = "0.3"
|
||||
lru = "0.12"
|
||||
libc = "0.2"
|
||||
fuse-backend-rs = { version = "0.14", features = ["fuse-t", "fusedev"] }
|
||||
|
||||
# NFS dependencies
|
||||
vfs = "0.12"
|
||||
|
||||
# WebDAV dependencies
|
||||
dav-server = { version = "0.11", features = ["localfs"] }
|
||||
http = "1"
|
||||
http-body-util = "0.1"
|
||||
xmltree = "0.12.0"
|
||||
env_logger = "0.11.10"
|
||||
objc2-fs-kit = "0.3.2"
|
||||
objc2-foundation = "0.3.2"
|
||||
objc2 = "0.6.4"
|
||||
|
||||
[[bin]]
|
||||
name = "fskit_mount"
|
||||
path = "src/bin/fskit_mount.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "fskit_poc"
|
||||
path = "src/bin/fskit_poc.rs"
|
||||
|
||||
[dev-dependencies]
|
||||
axum-test = "14"
|
||||
tempfile = "3.27.0"
|
||||
tokio-test = "0.4"
|
||||
|
||||
[[bin]]
|
||||
name = "raid_webdav_auto"
|
||||
path = "src/bin/raid_webdav_auto.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "test_raid5"
|
||||
path = "src/bin/test_raid5.rs"
|
||||
|
||||
[[bin]]
|
||||
name = "configure_iscsi"
|
||||
path = "src/bin/configure_iscsi.rs"
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"filetree",
|
||||
"filetree-sled",
|
||||
"filetree-rocksdb",
|
||||
"filetree-hybrid",
|
||||
"markbase-core",
|
||||
"markbase-webdav",
|
||||
"markbase-nfs",
|
||||
"markbase-smb",
|
||||
"markbase-fuse",
|
||||
"markbase-fskit",
|
||||
"markbase-raid",
|
||||
"markbase-iscsi",
|
||||
"markbase-sync", "rust-iscsi-initiator",
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user