summaryrefslogtreecommitdiffstats
path: root/template/Cargo.toml
blob: ba6bcb68579f767e0fea261d568d9ba523ab3ca2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "mail-template"
version = "0.6.1"
description = "[mail] provides a way to create bind string template engines to produce mails"
authors = ["Philipp Korber <p.korber@1aim.com>"]
keywords = ["mail", "template", "handlebars"]
categories = []
license = "MIT OR Apache-2.0"
readme = "./README.md"
documentation = "https://docs.rs/mail-template"
repository = "https://github.com/1aim/mail-template"

[features]
default = []
handlebars-bindings = ["handlebars"]

[package.metadata.docs.rs]
features = [ "handlebars-bindings" ]

[dependencies]
mail-core      = { version = "0.6.2", path = "../core", features    = ["serde-impl"] }
mail-internals = { version = "0.2.3", path = "../internals" }
mail-headers   = { version = "0.6.6", path = "../headers", features = ["serde-impl"] }

failure = "0.1.1"
futures = "0.1.14"
vec1 = { version="1.3.0", features=["serde"]}
soft-ascii-string = "1.0"
serde = { version="1", features=["derive"] }
toml = "0.4.8"
maybe-owned = "0.3.2"

handlebars = { version="1.1.0", optional=true }




[dev-dependencies]