webdog/Cargo.toml

28 lines
780 B
TOML
Raw Normal View History

2021-08-17 09:59:34 -07:00
[package]
name = "zoey"
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 }
grass = { version = "0.11", 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 }
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-10-02 00:42:23 -07:00
pulldown-cmark = { version = "0.9", default-features = false, features = ["simd"] }
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"
2021-08-18 13:49:50 -07:00
tokio = { version = "1.10", features = ["macros", "rt-multi-thread"], optional = true }
2021-08-21 00:47:13 -07:00
url = "2.2"
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"]
serve = ["futures", "hotwatch", "tokio", "warp"]