replace anyhow with eyre

This commit is contained in:
zyl 2024-06-14 13:36:41 -07:00
parent 00b5567769
commit 27bd18beea
No known key found for this signature in database
GPG key ID: FDAEE0976A45AAC3
12 changed files with 172 additions and 77 deletions

View file

@ -4,8 +4,9 @@ name = "zyl-site"
version = "0.1.0"
[dependencies]
anyhow = "1"
color-eyre = {version = "0.6", optional = true}
extract-frontmatter = "4"
eyre = "0.6"
fs_extra = "1.2"
futures = {version = "0.3", optional = true}
grass = {version = "0.13", default-features = false}
@ -33,5 +34,5 @@ walkdir = "2"
warp = {version = "0.3", optional = true}
[features]
default = ["serve"]
default = ["serve", "color-eyre"]
serve = ["futures", "hotwatch", "percent-encoding", "tokio", "warp"]