-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
131 lines (127 loc) · 2.59 KB
/
Cargo.toml
File metadata and controls
131 lines (127 loc) · 2.59 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
[package]
name = "tuwunel_service"
categories.workspace = true
description.workspace = true
edition.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
version.workspace = true
[lib]
path = "mod.rs"
bench = false
crate-type = [
"rlib",
# "dylib",
]
[features]
blurhashing = [
"dep:image",
"dep:blurhash",
]
brotli_compression = [
"tuwunel-core/brotli_compression",
"reqwest/brotli",
]
bzip2_compression = [
"tuwunel-database/bzip2_compression",
]
console = [
"dep:rustyline-async",
"dep:termimad",
]
element_hacks = []
gzip_compression = [
"tuwunel-core/gzip_compression",
"reqwest/gzip",
]
io_uring = [
"tuwunel-database/io_uring",
]
jemalloc = [
"tuwunel-core/jemalloc",
"tuwunel-database/jemalloc",
]
jemalloc_conf = [
"tuwunel-core/jemalloc_conf",
"tuwunel-database/jemalloc_conf",
]
jemalloc_prof = [
"tuwunel-core/jemalloc_prof",
"tuwunel-database/jemalloc_prof",
]
jemalloc_stats = [
"tuwunel-core/jemalloc_stats",
"tuwunel-database/jemalloc_stats",
]
ldap = [
"dep:ldap3",
]
lz4_compression = [
"tuwunel-database/lz4_compression",
]
media_thumbnail = [
"dep:image",
]
release_max_log_level = [
"tuwunel-core/release_max_log_level",
"tuwunel-database/release_max_log_level",
"log/max_level_trace",
"log/release_max_level_info",
"tracing/max_level_trace",
"tracing/release_max_level_info",
]
url_preview = [
"dep:image",
"dep:webpage",
]
zstd_compression = [
"tuwunel-core/zstd_compression",
"tuwunel-database/zstd_compression",
"reqwest/zstd",
]
[dependencies]
async-trait.workspace = true
base64.workspace = true
bytes.workspace = true
const-str.workspace = true
ctor.workspace = true
futures.workspace = true
hickory-resolver.workspace = true
http.workspace = true
image.workspace = true
image.optional = true
ipaddress.workspace = true
ldap3.workspace = true
ldap3.optional = true
log.workspace = true
loole.workspace = true
lru-cache.workspace = true
rand.workspace = true
regex.workspace = true
reqwest.workspace = true
ring.workspace = true
ruma.workspace = true
rustls.workspace = true
rustyline-async.workspace = true
rustyline-async.optional = true
serde_html_form.workspace = true
serde_json.workspace = true
serde.workspace = true
serde_yaml.workspace = true
sha2.workspace = true
termimad.workspace = true
termimad.optional = true
tokio.workspace = true
tracing.workspace = true
url.workspace = true
webpage.workspace = true
webpage.optional = true
webpki-root-certs.workspace = true
blurhash.workspace = true
blurhash.optional = true
tuwunel-core.workspace = true
tuwunel-database.workspace = true
[lints]
workspace = true