webdog/Cargo.toml

40 lines
1.1 KiB
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]
2024-06-14 13:36:41 -07:00
color-eyre = {version = "0.6", optional = true}
2022-10-02 00:42:23 -07:00
extract-frontmatter = "4"
2024-06-14 13:36:41 -07:00
eyre = "0.6"
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-10-23 19:57:01 -07:00
handlebars = "6"
2024-04-02 13:38:59 -07:00
hotwatch = {version = "0.5", optional = true}
2024-06-14 13:31:41 -07:00
itertools = "0.13"
2024-10-23 19:57:01 -07:00
lol_html = "2"
2024-04-02 13:38:59 -07:00
minifier = {version = "0.3", features = ["html"]}
percent-encoding = {version = "2", optional = true}
2024-10-23 19:57:01 -07:00
pulldown-cmark = {version = "0.12", default-features = false, features = [
2024-04-02 13:38:59 -07:00
"simd",
"html",
]}
rayon = "1"
2024-04-02 13:38:59 -07:00
rss = {version = "2", features = ["validation"]}
serde = {version = "1", features = ["derive"]}
2024-10-23 19:57:01 -07:00
serde_yml = "0.0.12"
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]
2024-06-14 13:36:41 -07:00
default = ["serve", "color-eyre"]
2022-12-14 21:39:19 -08:00
serve = ["futures", "hotwatch", "percent-encoding", "tokio", "warp"]