summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 32e15275defe2a9dc624a4fb9f3fc1910f403d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
name = "ewww"
version = "0.1.0"
authors = ["Lars Wirzenius <liw@liw.fi>"]
edition = "2018"
description = "Web server for static files"
homepage = "https://ewww.liw.fi/"
repository = "https://gitlab.com/larswirzenius/ewww"
license = "AGPL-3.0-or-later"
keywords = ["httpd"]

[dependencies]
anyhow = "1"
log = "0.4"
pretty_env_logger = "0.4"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
structopt = "0.3"
thiserror = "1"
tokio = { version = "1", features = ["full"] }
warp = { version = "0.3", features = ["tls"] }