webdog/Cargo.toml

49 lines
1.4 KiB
TOML
Raw Permalink Normal View History

2021-08-17 09:59:34 -07:00
[package]
2025-01-15 01:38:53 -08:00
description = "static site generator fit for a dog"
2024-11-04 17:57:51 -08:00
edition = "2021"
2025-01-15 01:38:53 -08:00
homepage = "https://webdog.zyl.gay"
2025-01-15 01:46:56 -08:00
license = "AGPL-3.0-or-later"
2024-11-04 17:57:51 -08:00
name = "webdog"
2025-01-15 01:38:53 -08:00
readme = "README.md"
repository = "https://github.com/zyllian/webdog"
2021-08-17 09:59:34 -07:00
version = "0.1.0"
[dependencies]
2024-11-22 17:07:44 -08:00
clap = {version = "4", features = ["derive"]}
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}
hotwatch = {version = "0.5", optional = true}
2025-01-14 13:30:34 -08:00
html5ever = "0.29"
2024-11-08 18:16:23 -08:00
include_dir = "0.7"
2025-01-14 13:30:34 -08:00
itertools = "0.14"
kuchikiki = "0.8.6-speedreader"
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"
syntect = "5"
2024-11-04 17:09:11 -08:00
tera = "1"
2024-04-02 13:38:59 -07:00
time = {version = "0.3", features = ["serde-human-readable"]}
2024-11-22 17:07:44 -08:00
tokio = {version = "1", features = [
2024-04-02 13:38:59 -07:00
"macros",
"rt-multi-thread",
], optional = true}
2024-11-04 10:34:54 -08:00
url = {version = "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"]