blob: 646cad5b4129ead9856dcd05e355d554e020bf8f (
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
|
[package]
name = "gnix"
version = "2.1.0"
edition = "2021"
[dependencies]
# HTTP
hyper = { version = "1.3.1", features = ["full"] }
hyper-util = "0.1.5"
http-body-util = "0.1.1"
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.2"
rustls = "0.23.9"
tokio-rustls = "0.26.0"
# Async stuff
tokio = { version = "1.38.0", 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.203", features = ["derive"] }
serde_yaml = "0.9.34"
inotify = "0.10.2"
# Logging
env_logger = "0.11.3"
log = "0.4.21"
# Fileserver related
markup = "0.15.0"
humansize = "2.1.3"
mime_guess = "2.0.4"
bytes = "1.6.0"
anyhow = "1.0.86"
thiserror = "1.0.61"
# Crypto for authentificating clients
aes-gcm-siv = "0.11.1"
argon2 = "0.6.0-pre.0"
rand = "0.9.0-alpha.1"
|