29 lines
822 B
TOML
29 lines
822 B
TOML
|
[package]
|
||
|
name = "puffball-fileye"
|
||
|
description = "WebDAV server for files"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
|
||
|
[dependencies]
|
||
|
actix = "0.13.0"
|
||
|
actix-rt = "2.8.0"
|
||
|
actix-web = { version = "4.3.1", features = ["rustls"] }
|
||
|
dav-server = { version = "0.5.4", features = ["actix-web"] }
|
||
|
futures = { version = "0.3.28", features = ["futures-executor"] }
|
||
|
futures-util = "0.3.28"
|
||
|
serde = { version = "1.0.159", features = ["derive"] }
|
||
|
serde_json = "1.0.95"
|
||
|
signal = "0.7.0"
|
||
|
sync = "0.1.0"
|
||
|
tokio = { version = "1.27.0", features = ["full"] }
|
||
|
tokio-stream = { version = "0.1.12", features = ["fs"] }
|
||
|
tokio-util = "0.7.7"
|
||
|
tracing = "0.1.37"
|
||
|
tracing-subscriber = { version = "0.3.16", features = ["env-filter"] }
|
||
|
|
||
|
[dev-dependencies]
|
||
|
insta = { version = "1.29.0", features = ["filters"] }
|
||
|
regex = "1.7.3"
|
||
|
ron = "0.8.0"
|
||
|
walkdir = "2.3.3"
|