update dependencies

This commit is contained in:
zyl 2025-06-04 23:17:34 -07:00
parent e555f437c7
commit b4088fb397
Signed by: zyl
SSH key fingerprint: SHA256:uxxbSXbdroP/OnKBGnEDk5q7EKB2razvstC/KmzdXXs
2 changed files with 486 additions and 507 deletions

957
Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -9,39 +9,39 @@ repository = "https://github.com/zyllian/webdog"
version = "0.1.1" version = "0.1.1"
[dependencies] [dependencies]
clap = {version = "4", features = ["derive"]} clap = { version = "4", features = ["derive"] }
color-eyre = {version = "0.6", optional = true} color-eyre = { version = "0.6", optional = true }
extract-frontmatter = "4" extract-frontmatter = "4"
eyre = "0.6" eyre = "0.6"
fs_extra = "1.2" fs_extra = "1.2"
futures = {version = "0.3", optional = true} futures = { version = "0.3", optional = true }
grass = {version = "0.13", default-features = false} grass = { version = "0.13", default-features = false }
hotwatch = {version = "0.5", optional = true} hotwatch = { version = "0.5", optional = true }
html5ever = "0.29" html5ever = "0.31"
include_dir = "0.7" include_dir = "0.7"
itertools = "0.14" itertools = "0.14"
kuchikiki = "0.8.6-speedreader" kuchikiki = "0.8.8-speedreader"
lol_html = "2" lol_html = "2"
minifier = {version = "0.3", features = ["html"]} minifier = { version = "0.3", features = ["html"] }
percent-encoding = {version = "2", optional = true} percent-encoding = { version = "2", optional = true }
pulldown-cmark = {version = "0.12", default-features = false, features = [ pulldown-cmark = { version = "0.13", default-features = false, features = [
"simd", "simd",
"html", "html",
]} ] }
rayon = "1" rayon = "1"
rss = {version = "2", features = ["validation"]} rss = { version = "2", features = ["validation"] }
serde = {version = "1", features = ["derive"]} serde = { version = "1", features = ["derive"] }
serde_yaml_ng = "0.10" serde_yaml_ng = "0.10"
syntect = "5" syntect = "5"
tera = "1" tera = "1"
time = {version = "0.3", features = ["serde-human-readable"]} time = { version = "0.3", features = ["serde-human-readable"] }
tokio = {version = "1", features = [ tokio = { version = "1", features = [
"macros", "macros",
"rt-multi-thread", "rt-multi-thread",
], optional = true} ], optional = true }
url = {version = "2", features = ["serde"]} url = { version = "2", features = ["serde"] }
walkdir = "2" walkdir = "2"
warp = {version = "0.3", optional = true} warp = { version = "0.3", optional = true }
[features] [features]
default = ["serve", "color-eyre"] default = ["serve", "color-eyre"]