zola/components/templates/Cargo.toml

33 lines
621 B
TOML
Raw Normal View History

2017-07-01 07:47:41 +00:00
[package]
name = "templates"
version = "0.1.0"
2018-03-14 17:22:24 +00:00
authors = ["Vincent Prouillet <prouillet.vincent@gmail.com>"]
2019-12-21 21:52:39 +00:00
edition = "2018"
2017-07-01 07:47:41 +00:00
[dependencies]
2019-12-07 16:50:51 +00:00
tera = "1"
2020-03-12 17:44:14 +00:00
base64 = "0.12"
2017-12-29 18:51:22 +00:00
lazy_static = "1"
2020-02-16 18:17:41 +00:00
pulldown-cmark = "0.7"
2019-06-21 07:24:14 +00:00
toml = "0.5"
csv = "1"
2020-02-16 18:17:41 +00:00
image = "0.23"
serde_json = "1.0"
sha2 = "0.8"
url = "2"
2017-07-01 07:47:41 +00:00
errors = { path = "../errors" }
utils = { path = "../utils" }
2018-10-02 14:42:34 +00:00
library = { path = "../library" }
config = { path = "../config" }
2018-02-02 20:35:04 +00:00
imageproc = { path = "../imageproc" }
svg_metadata = "0.4.1"
[dependencies.reqwest]
version = "0.10"
default-features = false
features = ["blocking", "rustls-tls"]
[dev-dependencies]
2020-04-12 15:21:04 +00:00
mockito = "0.25"