mirror of
https://github.com/zyllian/zyllian.github.io.git
synced 2025-01-18 11:47:01 -08:00
update dependencies
This commit is contained in:
parent
71a6556484
commit
030f784024
2 changed files with 340 additions and 329 deletions
628
Cargo.lock
generated
628
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
41
Cargo.toml
41
Cargo.toml
|
@ -1,35 +1,36 @@
|
||||||
[package]
|
[package]
|
||||||
|
edition = "2018"
|
||||||
name = "zyl-site"
|
name = "zyl-site"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1"
|
anyhow = "1"
|
||||||
extract-frontmatter = "4"
|
extract-frontmatter = "4"
|
||||||
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}
|
||||||
gray_matter = "0.2"
|
gray_matter = "0.2"
|
||||||
handlebars = "4.1"
|
handlebars = "5"
|
||||||
hotwatch = { version = "0.5", optional = true }
|
hotwatch = {version = "0.5", optional = true}
|
||||||
itertools = "0.11"
|
itertools = "0.12"
|
||||||
lol_html = "1"
|
lol_html = "1"
|
||||||
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.9", default-features = false, features = [
|
pulldown-cmark = {version = "0.10", default-features = false, features = [
|
||||||
"simd",
|
"simd",
|
||||||
] }
|
"html",
|
||||||
rss = { version = "2", features = ["validation"] }
|
]}
|
||||||
serde = { version = "1", features = ["derive"] }
|
rss = {version = "2", features = ["validation"]}
|
||||||
|
serde = {version = "1", features = ["derive"]}
|
||||||
serde_yaml = "0.9"
|
serde_yaml = "0.9"
|
||||||
time = { version = "0.3", features = ["serde-human-readable"] }
|
time = {version = "0.3", features = ["serde-human-readable"]}
|
||||||
tokio = { version = "1.10", features = [
|
tokio = {version = "1.10", features = [
|
||||||
"macros",
|
"macros",
|
||||||
"rt-multi-thread",
|
"rt-multi-thread",
|
||||||
], optional = true }
|
], optional = true}
|
||||||
url = { version = "2.2", features = ["serde"] }
|
url = {version = "2.2", features = ["serde"]}
|
||||||
walkdir = "2"
|
walkdir = "2"
|
||||||
warp = { version = "0.3", optional = true }
|
warp = {version = "0.3", optional = true}
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["serve"]
|
default = ["serve"]
|
||||||
|
|
Loading…
Add table
Reference in a new issue