Files
markbase/Cargo.toml
Warren d99ccbfaaf FSKit核心实现完成(489行)
- MarkBaseFS: FSFileSystem subclass + SQLite backend
- MarkBaseVolume: FSVolumeOperations + ReadWrite traits
- 目录枚举、文件读写完整实现
- 下一步:修复编译环境 + mount测试
2026-05-18 15:47:10 +08:00

75 lines
1.6 KiB
TOML

[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"
[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"