-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (37 loc) · 893 Bytes
/
Cargo.toml
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 = "luftpost"
version = "1.0.0"
authors = ["Lukas Pustina <[email protected]>"]
description = "Watches luftdaten.info particulates sensors and sends E-Mails if measurements exceed thresholds"
repository = "https://github.com/lukaspustina/luftpost"
readme = "README.md"
license = "MIT"
keywords = ["luftdaten", "E-Mail"]
include = [
"README.md",
"LICENSE",
"**/*.rs",
"Cargo.toml",
]
[badges]
travis-ci = { repository = "lukaspustina/luftpost", branch = "master" }
appveyor = { repository = "lukaspustina/luftpost", branch = "master" }
[[bin]]
name = "luftpost"
path = "src/main.rs"
[dependencies]
clap = "2"
error-chain = "0.11.0-rc.2"
futures = "0.1"
handlebars = "0.27"
hyper = "0.11"
lettre = "0.6"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
tabwriter = "1.0"
tokio-core = "0.1"
toml = "0.4"
[dev-dependencies]
mktemp = "0.3"
pretty_assertions = "0.1"