Add development server

This commit is contained in:
Zoey 2021-08-18 13:49:50 -07:00
parent 787eac91c0
commit fdeefbd78a
No known key found for this signature in database
GPG key ID: 2DCAC8EA81672106
11 changed files with 1497 additions and 42 deletions

View file

@ -7,10 +7,18 @@ edition = "2018"
anyhow = "1"
extract-frontmatter = "2.1"
fs_extra = "1.2"
futures = { version = "0.3", optional = true }
gray_matter = "0.1"
handlebars = "4.1"
hotwatch = { version = "0.4", optional = true }
lol_html = "0.3"
pulldown-cmark = { version = "0.8", default-features = false, features = ["simd"] }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.8"
tokio = { version = "1.10", features = ["macros", "rt-multi-thread"], optional = true }
walkdir = "2"
warp = { version = "0.3", optional = true }
[features]
default = ["serve"]
serve = ["futures", "hotwatch", "tokio", "warp"]