zyllian.github.io/Cargo.toml

27 lines
690 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"
extract-frontmatter = "2.1"
fs_extra = "1.2"
2021-08-18 13:49:50 -07:00
futures = { version = "0.3", optional = true }
2021-08-19 13:43:45 -07:00
grass = "0.10"
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"
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-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"]