-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
64 lines (58 loc) · 1.89 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "vigil-server"
version = "1.12.1"
description = "Microservices Status Page. Monitors a distributed infrastructure and sends alerts (Slack, SMS, etc.)."
readme = "README.md"
license = "MPL-2.0"
edition = "2018"
homepage = "https://github.com/valeriansaliou/vigil"
repository = "https://github.com/valeriansaliou/vigil.git"
keywords = ["microservices", "infrastructure", "status", "monitor", "slack"]
categories = ["web-programming"]
authors = ["Valerian Saliou <valerian@valeriansaliou.name>"]
exclude = ["dev/*"]
[badges]
travis-ci = { repository = "valeriansaliou/vigil", branch = "master" }
coveralls = { repository = "valeriansaliou/vigil", branch = "master", service = "github" }
[[bin]]
name = "vigil"
path = "src/main.rs"
doc = false
[dependencies]
log = "0.4"
clap = { version = "2.29", default-features = false }
lazy_static = "1.0"
time = "0.1"
serde = "1.0"
serde_derive = "1.0"
toml = "0.5"
base64 = "0.11"
regex = "1.0"
url = { version = "2.1", default-features = false }
url_serde = { version = "0.2", default-features = false }
indexmap = { version = "1.0", features = ["serde-1"] }
rocket = { version = "0.4", default-features = false }
rocket_contrib = { version = "0.4", features = ["tera_templates"] }
native-tls = "0.2.3"
openssl-probe = "0.1"
reqwest = "0.9"
lettre = { version = "0.9.2", features = ["smtp-transport"], optional = true }
lettre_email = { version = "0.9.2", optional = true }
libstrophe = { version = "0.10", default-features = false, optional = true }
[features]
default = ["notifier-email", "notifier-twilio", "notifier-slack", "notifier-pushover", "notifier-webhook"]
notifier-email = ["lettre", "lettre_email"]
notifier-twilio = []
notifier-slack = []
notifier-pushover = []
notifier-webhook = []
notifier-xmpp = ["libstrophe"]
[profile.dev]
opt-level = 0
debug = true
debug-assertions = true
[profile.release]
opt-level = "s"
lto = true
debug = false
debug-assertions = false