webdog/Cargo.toml

32 lines
1 KiB
TOML
Raw Normal View History

2021-08-17 09:59:34 -07:00
[package]
2022-12-14 21:44:37 -08:00
name = "zyl-site"
2021-08-17 09:59:34 -07:00
version = "0.1.0"
edition = "2018"
[dependencies]
anyhow = "1"
2022-10-02 00:42:23 -07:00
extract-frontmatter = "4"
2021-08-17 09:59:34 -07:00
fs_extra = "1.2"
2021-08-18 13:49:50 -07:00
futures = { version = "0.3", optional = true }
2023-02-10 21:41:11 -08:00
grass = { version = "0.12", default-features = false }
2021-08-19 13:00:31 -07:00
gray_matter = "0.2"
2021-08-17 09:59:34 -07:00
handlebars = "4.1"
2021-08-18 13:49:50 -07:00
hotwatch = { version = "0.4", optional = true }
2022-12-14 21:39:19 -08:00
itertools = "0.10"
2021-08-17 09:59:34 -07:00
lol_html = "0.3"
2022-10-03 01:13:37 -07:00
minifier = { version = "0.2", features = ["html"] }
2022-12-14 21:39:19 -08:00
percent-encoding = { version = "2", optional = true }
2022-10-02 00:42:23 -07:00
pulldown-cmark = { version = "0.9", default-features = false, features = ["simd"] }
2022-12-14 21:39:19 -08:00
rss = { version = "2", features = ["validation"] }
2021-08-17 09:59:34 -07:00
serde = { version = "1", features = ["derive"] }
2022-10-02 00:42:23 -07:00
serde_yaml = "0.9"
2022-12-14 21:39:19 -08:00
time = { version = "0.3", features = ["serde-human-readable"] }
2021-08-18 13:49:50 -07:00
tokio = { version = "1.10", features = ["macros", "rt-multi-thread"], optional = true }
2022-12-14 21:39:19 -08:00
url = { version = "2.2", features = ["serde"] }
2021-08-17 09:59:34 -07:00
walkdir = "2"
2021-08-18 13:49:50 -07:00
warp = { version = "0.3", optional = true }
[features]
default = ["serve"]
2022-12-14 21:39:19 -08:00
serve = ["futures", "hotwatch", "percent-encoding", "tokio", "warp"]