srv/Cargo.toml

31 lines
761 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-11-13 09:27:25 +00:00
version = "1.1.0"
2021-08-01 11:57:26 +00:00
[dependencies]
2022-06-06 05:01:22 +00:00
actix-files = "0.6"
2022-11-13 09:02:39 +00:00
actix-web = { version = "4.1", features = ["rustls"] }
2022-07-28 07:06:33 +00:00
actix-web-httpauth = "0.8"
askama = "0.11"
askama_actix = "0.13"
2022-11-13 09:02:39 +00:00
clap = { version = "4.0", features = ["derive", "wrap_help", "color", "cargo"] }
comrak = { version = "0.17.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"
2022-11-13 09:02:39 +00:00
serde = { version = "1.0", features = ["derive"] }
2022-06-06 05:01:22 +00:00
sha2 = "0.10"
2022-11-13 09:02:39 +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