srv/Cargo.toml

26 lines
557 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"
name = "web"
2021-08-21 12:10:41 +00:00
version = "0.6.5-beta"
2021-08-01 11:57:26 +00:00
[dependencies]
2021-08-21 12:10:41 +00:00
actix-files = "0.5"
actix-web = {version = "3.3", features = ["openssl"]}
actix-web-httpauth = "0.5"
2021-08-03 17:09:59 +00:00
chrono = "0.4"
clap = {version = "3.0.0-beta.2", features = ["wrap_help", "color"]}
2021-08-21 12:10:41 +00:00
env_logger = "0.9"
lazy_static = "1.4"
log = "0.4"
mime_guess = "2.0.3"
2021-08-21 12:10:41 +00:00
openssl = {version = "0.10"}
regex = "1.5"
serde = "1"
sha2 = "0.9"
tera = "1"
[profile.release]
opt-level = "z"
lto = true