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-10-30 15:52:01 +00:00
|
|
|
base64 = "0.13"
|
2017-12-29 18:51:22 +00:00
|
|
|
lazy_static = "1"
|
2019-06-21 07:24:14 +00:00
|
|
|
toml = "0.5"
|
2018-10-18 15:32:30 +00:00
|
|
|
csv = "1"
|
2020-02-16 18:17:41 +00:00
|
|
|
image = "0.23"
|
2018-10-18 15:32:30 +00:00
|
|
|
serde_json = "1.0"
|
2020-06-18 19:11:22 +00:00
|
|
|
sha2 = "0.9"
|
2019-08-07 22:37:37 +00:00
|
|
|
url = "2"
|
2020-11-21 10:44:42 +00:00
|
|
|
nom-bibtex = "0.3"
|
2020-11-28 12:04:49 +00:00
|
|
|
svg_metadata = "0.4.1"
|
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" }
|
2017-08-07 11:38:13 +00:00
|
|
|
config = { path = "../config" }
|
2018-02-02 20:35:04 +00:00
|
|
|
imageproc = { path = "../imageproc" }
|
2020-11-28 12:04:49 +00:00
|
|
|
rendering = { path = "../rendering" }
|
2019-12-23 15:16:56 +00:00
|
|
|
|
2020-04-27 07:49:05 +00:00
|
|
|
[dependencies.reqwest]
|
|
|
|
version = "0.10"
|
|
|
|
default-features = false
|
|
|
|
features = ["blocking", "rustls-tls"]
|
|
|
|
|
2019-12-23 15:16:56 +00:00
|
|
|
[dev-dependencies]
|
2020-11-15 09:13:38 +00:00
|
|
|
mockito = "0.28"
|