srv/Cargo.toml

29 lines
620 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-06-07 03:06:42 +00:00
version = "1.0.0"
2021-08-01 11:57:26 +00:00
[dependencies]
2022-06-06 05:01:22 +00:00
actix-files = "0.6"
actix-web = {version = "4.0", features = ["rustls"]}
actix-web-httpauth = "0.6"
2021-08-03 17:09:59 +00:00
chrono = "0.4"
2022-06-06 05:01:22 +00:00
clap = {version = "3.1", features = ["wrap_help", "color", "cargo"]}
2021-08-21 12:10:41 +00:00
env_logger = "0.9"
lazy_static = "1.4"
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"
tera = "1.15"
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"