srv/Cargo.toml

31 lines
741 B
TOML
Raw Normal View History

2021-08-01 11:57:26 +00:00
[package]
authors = ["Tim_Paik <timpaikc@outlook.com>"]
description = "simple http server written in rust"
edition = "2018"
2021-08-25 04:33:34 +00:00
name = "srv"
2022-07-19 15:06:15 +00:00
version = "1.0.4"
2021-08-01 11:57:26 +00:00
[dependencies]
2022-06-06 05:01:22 +00:00
actix-files = "0.6"
2022-06-18 04:44:00 +00:00
actix-web = {version = "4.1", features = ["rustls"]}
actix-web-httpauth = "0.7"
askama = "0.11"
askama_actix = "0.13"
2022-06-18 04:44:00 +00:00
clap = {version = "3.2", features = ["wrap_help", "color", "cargo"]}
2022-07-27 17:39:51 +00:00
comrak = {version = "0.14.0", default-features = false}
2021-08-21 12:10:41 +00:00
env_logger = "0.9"
log = "0.4"
mime_guess = "2.0"
2022-06-06 05:01:22 +00:00
rustls = "0.20"
rustls-pemfile = "1.0"
serde = {version = "1.0", features = ["derive"]}
sha2 = "0.10"
2022-07-27 17:39:51 +00:00
time = {version = "0.3", features = ["formatting", "parsing"]}
toml = "0.5"
urlencoding = "2.1"
2021-08-21 12:10:41 +00:00
[profile.release]
lto = true
2021-08-21 12:10:41 +00:00
opt-level = "z"
2022-06-07 03:35:06 +00:00
strip = true