webdog/Cargo.toml

38 lines
1,023 B
TOML
Raw Normal View History

2021-08-17 09:59:34 -07:00
[package]
2024-04-02 13:38:59 -07:00
edition = "2018"
2022-12-14 21:44:37 -08:00
name = "zyl-site"
2021-08-17 09:59:34 -07:00
version = "0.1.0"
[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"
2024-04-02 13:38:59 -07:00
futures = {version = "0.3", optional = true}
grass = {version = "0.13", default-features = false}
2021-08-19 13:00:31 -07:00
gray_matter = "0.2"
2024-04-02 13:38:59 -07:00
handlebars = "5"
hotwatch = {version = "0.5", optional = true}
itertools = "0.12"
2023-11-12 19:10:45 -08:00
lol_html = "1"
2024-04-02 13:38:59 -07:00
minifier = {version = "0.3", features = ["html"]}
percent-encoding = {version = "2", optional = true}
pulldown-cmark = {version = "0.10", default-features = false, features = [
"simd",
"html",
]}
rss = {version = "2", features = ["validation"]}
serde = {version = "1", features = ["derive"]}
2022-10-02 00:42:23 -07:00
serde_yaml = "0.9"
2024-04-02 13:38:59 -07:00
time = {version = "0.3", features = ["serde-human-readable"]}
tokio = {version = "1.10", features = [
"macros",
"rt-multi-thread",
], optional = true}
url = {version = "2.2", features = ["serde"]}
2021-08-17 09:59:34 -07:00
walkdir = "2"
2024-04-02 13:38:59 -07:00
warp = {version = "0.3", optional = true}
2021-08-18 13:49:50 -07:00
[features]
default = ["serve"]
2022-12-14 21:39:19 -08:00
serve = ["futures", "hotwatch", "percent-encoding", "tokio", "warp"]