38 lines
858 B
TOML
38 lines
858 B
TOML
[package]
|
|
name = "shtola"
|
|
description = "Minimal static site generator"
|
|
version = "0.4.3"
|
|
authors = ["Liv <shadows_withal@fastmail.com>"]
|
|
edition = "2021"
|
|
repository = "https://codeberg.org/shadows_withal/shtola"
|
|
documentation = "https://docs.rs/shtola"
|
|
homepage = "https://codeberg.org/shadows_withal/shtola"
|
|
readme = "README.md"
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
[features]
|
|
full = ["markdown", "tera_layouts"]
|
|
markdown = ["comrak"]
|
|
tera_layouts = ["tera", "id_tree"]
|
|
|
|
[dependencies]
|
|
log = "~0.4"
|
|
walkdir = "~2.3"
|
|
ware = "~2.0"
|
|
pathdiff = "~0.2"
|
|
globset = "~0.4"
|
|
serde_json = "~1.0"
|
|
serde_yaml = "~0.8"
|
|
|
|
# Markdown
|
|
comrak = { version = "~0.12", optional = true }
|
|
|
|
# Tera Layouts
|
|
tera = { version = "~1.12", optional = true }
|
|
id_tree = { version = "~1.8", optional = true }
|
|
|
|
[dev_dependencies]
|
|
minifemme = "~1.0"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|