srv/Cargo.toml

16 lines
440 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-18 09:48:59 +00:00
version = "0.2.1-beta"
2021-08-01 11:57:26 +00:00
[dependencies]
2021-08-03 17:09:59 +00:00
chrono = "0.4"
clap = {version = "3.0.0-beta.2", features = ["wrap_help", "color"]}
colored = "2"
lazy_static = "1.4.0"
mime_guess = "2.0.3"
2021-08-03 17:09:59 +00:00
rocket = {version = "0.5.0-rc.1", features = ["tls"]}
2021-08-04 14:04:26 +00:00
rocket_dyn_templates = {version = "0.1.0-rc.1", features = ["tera"]}