mirror of
https://github.com/hamaluik/mkbook.git
synced 2024-11-16 00:13:01 +00:00
34 lines
812 B
TOML
34 lines
812 B
TOML
[package]
|
|
name = "mkbook"
|
|
version = "0.3.0"
|
|
authors = ["Kenton Hamaluik <kenton@hamaluik.ca>"]
|
|
edition = "2018"
|
|
build = "build.rs"
|
|
description = "A simpler alternative to mdbook, meant for building book websites from Markdown files"
|
|
homepage = "https://hamaluik.github.io/mkbook/"
|
|
repository = "https://github.com/hamaluik/mkbook"
|
|
readme = "README.md"
|
|
keywords = ["book", "markdown", "static"]
|
|
categories = ["command-line-utilities", "text-processing", "web-programming"]
|
|
license = "Apache-2.0"
|
|
exclude = [
|
|
"docs/*",
|
|
"docs-src/*",
|
|
]
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|
|
|
|
[dependencies]
|
|
syntect = "3.3"
|
|
comrak = "0.6"
|
|
clap = "2.33"
|
|
askama = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
toml = "0.5"
|
|
lazy_static = "1.4"
|
|
chrono = "0.4"
|
|
|
|
[build-dependencies]
|
|
sass-rs = "0.2"
|