You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.4 KiB
45 lines
1.4 KiB
[package] |
|
name = "duf" |
|
version = "0.13.1" |
|
edition = "2021" |
|
authors = ["sigoden <sigoden@gmail.com>"] |
|
description = "Duf is a simple file server." |
|
license = "MIT OR Apache-2.0" |
|
homepage = "https://github.com/sigoden/duf" |
|
repository = "https://github.com/sigoden/duf" |
|
autotests = false |
|
categories = ["command-line-utilities", "web-programming::http-server"] |
|
keywords = ["static", "file", "server", "webdav", "cli"] |
|
|
|
[dependencies] |
|
clap = { version = "3", default-features = false, features = ["std", "cargo"] } |
|
chrono = "0.4" |
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "fs", "io-util", "signal"]} |
|
tokio-rustls = "0.23" |
|
tokio-stream = { version = "0.1", features = ["net"] } |
|
tokio-util = { version = "0.7", features = ["codec", "io-util"] } |
|
hyper = { version = "0.14", features = ["http1", "server", "tcp", "stream"] } |
|
percent-encoding = "2.1" |
|
serde = { version = "1", features = ["derive"] } |
|
serde_json = "1" |
|
futures = "0.3" |
|
base64 = "0.13" |
|
async_zip = "0.0.7" |
|
async-walkdir = "0.2.0" |
|
headers = "0.3.7" |
|
mime_guess = "2.0.4" |
|
get_if_addrs = "0.5.3" |
|
rustls = { version = "0.20", default-features = false, features = ["tls12"] } |
|
rustls-pemfile = "1" |
|
md5 = "0.7.0" |
|
lazy_static = "1.4.0" |
|
uuid = { version = "1.1.1", features = ["v4", "fast-rng"] } |
|
urlencoding = "2.1.0" |
|
xml-rs = "0.8" |
|
env_logger = { version = "0.9.0", default-features = false, features = ["humantime"] } |
|
log = "0.4.17" |
|
|
|
[profile.release] |
|
lto = true |
|
strip = true |
|
opt-level = "z"
|
|
|