summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: a74ea427af463c049c766d966b0543b39e9b23f3 (plain)
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
[package]
name = "gnix"
version = "2.3.0"
edition = "2021"

[dependencies]
# HTTP
hyper = { version = "1.4.1", features = ["server", "client", "http1", "http2"] }
hyper-util = { version = "0.1.7", features = [
    "server-auto",
    "server",
    "http1",
    "http2",
    "tokio",
] }
http-body-util = "0.1.2"
http = "1.1.0"
headers = "0.4.0"
percent-encoding = "2.3.1"
base64 = "0.22.1"
httpdate = "1.0.3"
hex = "0.4.3"

# TLS
rustls-pemfile = "2.1.3"
rustls = { version = "0.23.12", default-features = false, features = ["ring"] }
tokio-rustls = "0.26.0"
rustls-webpki = "0.102.6"
ring = "0.17.8"

# Async stuff
tokio = { version = "1.39.3", features = ["full"] }
tokio-util = { version = "0.7.11", features = ["io"] }
futures-util = "0.3.30"
futures = "0.3.30"
pin-project = "1.1.5"

# Config
serde = { version = "1.0.208", features = ["derive"] }
serde_yml = "0.0.12"
serde_json = "1.0.125"
inotify = "0.11.0"

# Logging
env_logger = "0.11.5"
log = "0.4.22"

# Fileserver related
markup = "0.15.0"
humansize = "2.1.3"
mime_guess = "2.0.5"

# Crypto for authentificating clients
aes-gcm-siv = "0.11.1"
argon2 = "0.6.0-pre.1"
sha2 = "0.11.0-pre.4"
rand = "0.9.0-alpha.2"

# Other helpers and stuff
bytes = "1.7.1"
anyhow = "1.0.86"
thiserror = "2.0.3"
regex = "1.10.6"
users = "0.11.0"