Cargo Features

[dependencies]
dav-server = { version = "0.5.8", default-features = false, features = ["all", "actix-compat", "warp-compat", "localfs", "memfs"] }
default = localfs, memfs

These default features are set whenever dav-server is added without default-features = false somewhere in the dependency tree.

all = actix-compat, warp-compat
actix-compat all? = actix-web

Affects dav-server::actix

warp-compat all? = hyper, warp

Affects dav-server::warp

localfs default = libc, lru, parking_lot

Affects dav-server::localfs, warp::dav_dir, warp::dav_file

memfs default = libc

Affects dav-server::memfs

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

libc localfs memfs
lru localfs
parking_lot localfs
hyper warp-compat?

Enables hyper ^0.14.0

warp warp-compat?
actix-web actix-compat?