29 lines
492 B
TOML
29 lines
492 B
TOML
|
[package]
|
||
|
name = "gardenserver"
|
||
|
version = "0.1.2"
|
||
|
authors = ["Tomáš Mládek <tmladek@protonmail.ch>"]
|
||
|
edition = "2018"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[dependencies]
|
||
|
clap = "2.33.0"
|
||
|
|
||
|
anyhow = "1.0"
|
||
|
env_logger = "0.7.1"
|
||
|
log = "0.4"
|
||
|
|
||
|
actix = "0.9.0"
|
||
|
actix-files = "0.2.2"
|
||
|
actix-rt = "1.0.0"
|
||
|
actix-web = "2.0"
|
||
|
actix_derive = "0.3.2"
|
||
|
|
||
|
pulldown-cmark = "0.8.0"
|
||
|
|
||
|
tera = "1"
|
||
|
|
||
|
chrono = "0.4"
|
||
|
regex = "1"
|
||
|
percent-encoding = "2.1.0"
|