- GET/PUT/PROPFIND operations verified - 13ms response time - Files: test.txt, new.txt, write_test.txt - FakeLs lock system working - env_logger dependency added
72 lines
1.5 KiB
TOML
72 lines
1.5 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"
|
|
|
|
[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"
|