kiln/Cargo.toml

21 lines
559 B
TOML
Raw Normal View History

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"
license-file = "LICENSE.md" # BlueOak-1.0.0
[dependencies]
chrono = "0.4"
lazy_static = "1.3"
log = { version = "0.4", features = ["release_max_level_warn"] }
pulldown-cmark = { version = "0.5", default-features = false }
regex = "1.1"
rsass = "0.9"
serde = "1.0"
serde_derive = "1.0"
2019-05-25 22:33:18 +00:00
tera = "1.0.0-beta.6"
2019-05-18 18:00:12 +00:00
toml = "0.4"
2019-05-25 22:33:18 +00:00
simple-log = { version = "0.1.0", git = "https://git.sr.ht/~adnano/simple-log" }