zola/components/templates/Cargo.toml

40 lines
749 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-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"
csv = "1"
2021-05-12 19:07:18 +00:00
serde = "1"
serde_json = "1"
serde_derive = "1"
sha2 = "0.9"
url = "2"
nom-bibtex = "0.3"
num-format = "0.4"
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" }
rendering = { path = "../rendering" }
[dependencies.reqwest]
2021-01-05 21:11:15 +00:00
version = "0.11"
default-features = false
features = ["blocking"]
[dev-dependencies]
2021-04-21 19:43:02 +00:00
mockito = "0.30"
2021-05-11 16:28:01 +00:00
tempfile = "3"
[features]
rust-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/default-tls"]