-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (29 loc) · 954 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "wdav-crypto-rs"
version = "0.0.1"
edition = "2021"
description = "WebDAV server with read-only and writable symlinks"
license = "MIT"
repository = "https://github.com/scale-rs/tmpwdav-1-q0047082.deta.app"
homepage = "https://tmpwdav-1-q0047082.deta.app"
[features]
mockable = ["dep:mockall"]
mock_fs = ["mockable", "dep:mockall_double"]
mock_entry = ["mockable"]
[dependencies]
askama = "0.12.0"
const_format = "0.2.31"
dav-server = { version = "0.5.3", features = ["warp-compat"] }
env_logger = "0.10.0"
tokio = { version = "1.26.0", features = ["full"] }
warp = "0.3.3"
http = "0.2.5"
mockall = { version = "0.11.4", optional = true }
mockall_double = { version = "0.3.0", optional = true }
[dev-dependencies]
test-binary = "3.0.1"
thiserror = "1.0.48"
#[[test.fs_mock_entry_mock.dependencies]]
#name = "fs_mock_entry_mock"
#dependencies.tmpwdav-1-q0047082 = {features = ["fs_mock", "entry_mock"]}
#dependencies.askama = "0.12.0"