blob: c900bd756becc9af5c545fec1a29e4c698eed0ee (
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
|
[package]
name = "gnix"
version = "0.1.0"
edition = "2021"
[dependencies]
# HTTP
hyper = { version = "1.0.0-rc.2", features = ["full"] }
http-body-util = "0.1.0-rc.2"
# TLS
rustls-pemfile = "1.0.2"
rustls = "0.20.8"
tokio-rustls = "0.23.4"
# Async stuff
tokio = { version = "1.25.0", features = ["full"] }
tokio-util = { version = "0.7.7", features = ["io"] }
futures-util = "0.3.26"
# Config
serde = { version = "1.0.152", features = ["derive"] }
toml = "0.7.2"
# Logging
env_logger = "0.10.0"
log = "0.4.17"
# Fileserver related
markup = "0.13.1"
humansize = "2.1.3"
mime_guess = "2.0.4"
bytes = "1.4.0"
anyhow = "1.0.69"
thiserror = "1.0.38"
|