2021-08-17 09:59:34 -07:00
|
|
|
[package]
|
|
|
|
name = "zoey"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
|
|
|
extract-frontmatter = "2.1"
|
|
|
|
fs_extra = "1.2"
|
2021-08-18 13:49:50 -07:00
|
|
|
futures = { version = "0.3", optional = true }
|
2021-08-17 09:59:34 -07:00
|
|
|
gray_matter = "0.1"
|
|
|
|
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"
|
|
|
|
pulldown-cmark = { version = "0.8", default-features = false, features = ["simd"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_yaml = "0.8"
|
2021-08-18 13:49:50 -07:00
|
|
|
tokio = { version = "1.10", features = ["macros", "rt-multi-thread"], optional = true }
|
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"]
|