2019-05-18 18:00:12 +00:00
|
|
|
[package]
|
|
|
|
name = "kiln"
|
|
|
|
description = "A simple static site generator built in Rust."
|
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["adnano <me@adnano.co>"]
|
|
|
|
edition = "2018"
|
2020-05-08 07:33:24 +00:00
|
|
|
license = "BlueOak-1.0.0"
|
2019-05-18 18:00:12 +00:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
chrono = "0.4"
|
2020-05-08 07:33:24 +00:00
|
|
|
lazy_static = "1.4"
|
|
|
|
pulldown-cmark = { version = "0.7", default-features = false }
|
|
|
|
regex = "1.3"
|
|
|
|
rsass = "0.13"
|
2019-05-18 18:00:12 +00:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2020-05-08 07:33:24 +00:00
|
|
|
tera = "1.2"
|
|
|
|
toml = "0.5"
|