srv/Cargo.toml

29 lines
570 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"
2021-08-23 09:47:56 +00:00
version = "1.0.0-rc"
2021-08-01 11:57:26 +00:00
[dependencies]
2021-08-21 12:10:41 +00:00
actix-files = "0.5"
actix-http = "2.2"
actix-web = {version = "3.3", features = ["rustls"]}
2021-08-21 12:10:41 +00:00
actix-web-httpauth = "0.5"
2021-08-03 17:09:59 +00:00
chrono = "0.4"
clap = {version = "3.0.0-beta.4", 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"
2021-08-21 12:10:41 +00:00
regex = "1.5"
rustls = "0.18"
2021-08-21 12:10:41 +00:00
serde = "1"
sha2 = "0.9"
tera = "1"
toml = "0.5"
2021-08-21 12:10:41 +00:00
[profile.release]
lto = true
2021-08-21 12:10:41 +00:00
opt-level = "z"