-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
32 lines (30 loc) · 875 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "tempura"
version = "0.5.2"
edition = "2021"
authors = ["yuma140902"]
description = "Pipeline-based Static site generator"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/yuma140902/tempura"
keywords = ["ssg", "templating", "web", "markdown"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.86"
chrono = "0.4.38"
clap = { version = "4.5.16", features = ["derive", "help"] }
handlebars = "4.5.0"
matter = "0.1.0-alpha4"
once_cell = "1.19.0"
path-absolutize = "3.1.1"
pathdiff = "0.2.1"
pulldown-cmark = "0.9.6"
regex = "1.10.6"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
serde_json_path = "0.6.7"
serde_regex = "1.1.0"
serde_yaml = "0.9.34"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
walkdir = "2.5.0"