summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: e13195e2b5907993fc2f48cacee45e59ce7aeabc (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
40
41
42
[package]
name = "mail-template"
version = "0.2.0"
description = "[internal/mail-api] provides a \"composition through template\"  api for the Mail type from the mail-api crates"
authors = ["Philipp Korber <p.korber@1aim.com>"]
keywords = ["mail-api", "internal"]
categories = []
license = "MIT OR Apache-2.0"
readme = "./README.md"
documentation = "https://docs.rs/mail-template"
repository = "https://github.com/1aim/mail-template"


[dependencies]
mail-types = { git="https://github.com/1aim/mail-types" }
mail-common = { git="https://github.com/1aim/mail-common" }
mail-headers = { git="https://github.com/1aim/mail-headers" }
mail-derive = { git="https://github.com/1aim/mail-derive" }

failure = "0.1.1"
futures = "0.1.14"
vec1 = "1.0"
soft-ascii-string = "1.0"
serde = { version="1.0.64", optional=true }



[dependencies.mime]
git="https://github.com/1aim/mime"
branch="parser_revamp"
version="0.4.0"

[dependencies.askama]
version = "0.6.4"
optional = true

[dev-dependencies]

[features]
default = []
askama-engine = ["askama"]
serialize-to-content-id = ["serde"]