-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
31 lines (29 loc) · 954 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
[package]
name = "rmq_monitor"
version = "0.2.6"
authors = ["Rostislav Raykov <[email protected]>"]
edition = "2021"
description = "A simple tool which monitors RabbitMQ and notifies via Slack (legacy webhooks) when certain thresholds are met"
repository = "https://github.com/zbrox/rmq_monitor"
homepage = "https://github.com/zbrox/rmq_monitor"
keywords = ["rabbitmq", "rmq", "slack", "notification", "alerts"]
categories = ["command-line-utilities"]
license = "MIT"
documentation = "https://github.com/zbrox/rmq_monitor"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = "1.0.106"
serde_derive = "1.0.106"
serde_json = "1.0.51"
toml = "0.7.3"
structopt = "0.3.13"
human-panic = "1.0.3"
anyhow = "1.0.28"
env_logger = "0.10.0"
log = "0.4.8"
async-std = {version = "1.5.0", features = ["unstable"]}
surf = "2.3.2"
base64 = "0.21.0"
futures = "0.3"
smol_str = "0.2.0"