srv/Cargo.toml

31 lines
760 B
TOML
Raw Permalink 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"
2023-07-17 10:15:43 +00:00
actix-web = { version = "4.3", features = ["rustls"] }
2022-07-28 07:06:33 +00:00
actix-web-httpauth = "0.8"
2023-07-17 10:15:43 +00:00
askama = "0.12"
askama_actix = "0.14"
clap = { version = "4.3", features = ["derive", "wrap_help", "color", "cargo"] }
comrak = { version = "0.18", default-features = false }
env_logger = "0.10"
2021-08-21 12:10:41 +00:00
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"] }
2023-07-17 10:15:43 +00:00
toml = "0.7"
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