[package] name = "quatrain" description = "Not intended to be a static site generator" version = "0.6.0" authors = ["equt "] edition = "2018" license = "MIT" [lib] path = "src/lib/lib.rs" [[bin]] name = "qua" path = "src/bin/qua.rs" [features] quatrain = ["tera", "getopts", "lazy_static", "dirs"] [dependencies] auto_enums = "0.7.5" katex = "0.2.1" anyhow = "1.0.31" serde_yaml = "0.8.12" derive-new = "0.5.8" unicase = "2.6.0" memchr = "2.3.3" serde = { version = "1.0.111", features = ["derive"] } chrono = "0.4.11" thiserror = "1.0.19" getopts = { version = "0.2.21", optional = true } tera = { version = "1.3.0", default-features = false, optional = true } lazy_static = { version = "1.4.0", optional = true } dirs = { version = "2.0.2", optional = true }