-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Cargo.toml
80 lines (72 loc) · 3.15 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[package]
name = "aliyundrive-webdav"
version = "2.3.3"
edition = "2021"
description = "WebDAV server for AliyunDrive"
license = "MIT"
homepage = "https://github.com/messense/aliyundrive-webdav"
repository = "https://github.com/messense/aliyundrive-webdav.git"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
bytes = "1.5.0"
clap = { version = "4.3.19", features = ["derive", "env", "wrap_help"] }
dashmap = "5.5.3"
dav-server = { version = "0.5.5", default-features = false, features = ["hyper"] }
dirs = "5.0.1"
futures-util = "0.3"
headers = "0.3.6"
hyper = { version = "0.14.27", features = ["server", "http2"] }
moka = { version = "0.11.3", default-features = false, features = ["future"] }
openssl-probe = { version = "0.1.4", optional = true }
path-slash = "0.2.0"
reqwest = { version = "0.11.24", default-features = false, features = ["json", "gzip", "cookies", "socks"] }
reqwest-middleware = "0.2.4"
reqwest-retry = "0.2.0"
serde = { version = "1.0.168", features = ["derive"] }
time = { version = "0.3", features = ["formatting", "parsing"] }
tokio = { version = "1.28.2", features = ["rt-multi-thread", "io-util", "net", "time", "sync", "macros", "parking_lot", "fs"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "time", "local-time"] }
url = "2.4.0"
zip = { version = "0.6.4", default-features = false }
base64 = "0.21.5"
serde_json = "1.0.107"
atty = "0.2.14"
qr2term = "0.3.1"
self_update = { version = "0.37.0", default-features = false, features = ["archive-zip", "archive-tar", "compression-flate2", "compression-zip-deflate"] }
# TLS server support
rustls-pemfile = { version = "1.0.0", optional = true }
tls-listener = { version = "0.7.0", features = ["hyper-h1", "hyper-h2", "rt"], optional = true }
tokio-rustls = { version = "0.24.0", optional = true }
# Unix signal support
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.14"
signal-hook-tokio = { version = "0.3.1", features = ["futures-v0_3"] }
[features]
default = ["rustls-tls", "atomic64"]
rustls-tls = ["reqwest/rustls-tls", "rustls-pemfile", "tls-listener/rustls", "hyper/stream", "tokio-rustls", "self_update/rustls"]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored", "openssl-probe"]
atomic64 = ["moka/atomic64"]
[profile.release]
lto = true
[package.metadata.deb]
maintainer = "messense <[email protected]>"
copyright = "2021-present, messense <[email protected]>"
license-file = ["LICENSE", "4"]
extended-description = """\
WebDAV server for AliyunDrive"""
section = "utility"
priority = "optional"
assets = [
["target/release/aliyundrive-webdav", "usr/bin/", "755"],
["systemd.service", "etc/systemd/system/aliyundrive-webdav.service", "644"],
]
[package.metadata.generate-rpm]
assets = [
{ source = "target/release/aliyundrive-webdav", dest = "/usr/bin/aliyundrive-webdav", mode = "0755" },
{ source = "LICENSE", dest = "/usr/share/doc/aliyundrive-webdav/LICENSE", doc = true, mode = "0644" },
{ source = "systemd.service", dest = "/etc/systemd/system/aliyundrive-webdav.service", config = true, mode = "0644" },
]