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:35:06 +00:00
|
|
|
version = "1.0.1"
|
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"
|
2021-10-24 13:46:08 +00:00
|
|
|
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"
|
2021-08-23 04:48:35 +00:00
|
|
|
toml = "0.5"
|
2021-09-03 10:41:58 +00:00
|
|
|
urlencoding = "2.1"
|
2021-08-21 12:10:41 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2021-08-22 07:49:00 +00:00
|
|
|
lto = true
|
2021-08-21 12:10:41 +00:00
|
|
|
opt-level = "z"
|
2022-06-07 03:35:06 +00:00
|
|
|
strip = true
|