2673466998
* Add support for loading Bibtex data. * Add load_data() documentation for the bibtex format * Force bibtex tags to be lower case. Bibtex tags are case-insensitive, and this works around tera's case-sensitiveness. * Improve the load_data() documentation for the bibtex format
34 lines
680 B
TOML
34 lines
680 B
TOML
[package]
|
|
name = "templates"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
tera = "1"
|
|
base64 = "0.13"
|
|
lazy_static = "1"
|
|
pulldown-cmark = { version = "0.8", default-features = false }
|
|
toml = "0.5"
|
|
csv = "1"
|
|
image = "0.23"
|
|
serde_json = "1.0"
|
|
sha2 = "0.9"
|
|
url = "2"
|
|
nom-bibtex = "0.3"
|
|
|
|
errors = { path = "../errors" }
|
|
utils = { path = "../utils" }
|
|
library = { path = "../library" }
|
|
config = { path = "../config" }
|
|
imageproc = { path = "../imageproc" }
|
|
svg_metadata = "0.4.1"
|
|
|
|
[dependencies.reqwest]
|
|
version = "0.10"
|
|
default-features = false
|
|
features = ["blocking", "rustls-tls"]
|
|
|
|
[dev-dependencies]
|
|
mockito = "0.28"
|