28 lines
612 B
TOML
28 lines
612 B
TOML
[package]
|
|
name = "ailog"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["syui"]
|
|
description = "A static blog generator with AI features"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.5", features = ["derive"] }
|
|
pulldown-cmark = "0.11"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
anyhow = "1.0"
|
|
toml = "0.8"
|
|
chrono = "0.4"
|
|
tera = "1.20"
|
|
walkdir = "2.5"
|
|
gray_matter = "0.2"
|
|
fs_extra = "1.3"
|
|
colored = "2.1"
|
|
serde_yaml = "0.9"
|
|
syntect = "5.2"
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.14" |