-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
32 lines (30 loc) · 885 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
[package]
name = "universalis-alerts"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = [] }
tracing-opentelemetry = "0.17.2"
opentelemetry = "0.17.0"
opentelemetry-jaeger = "0.16.0"
tokio = { version = "1", features = ["full"] }
reqwest = "0.11.14"
error-chain = "0.12.4"
serde = { version = "1.0.152", features = ["derive"] }
serde_json = "1.0.91"
tungstenite = "0.18.0"
tokio-tungstenite = { version = "0.18.0", features = ["native-tls"] }
url = "2.0.0"
futures-util = "0.3"
futures-channel = "0.3"
bson = "2.5.0"
mysql_async = "0.31.2"
itertools = "0.10.5"
dotenv = "0.15.0"
cached = "0.42.0"
log = "0.4.17"
env_logger = "0.10.0"
metrics = "0.20.1"
metrics-exporter-prometheus = "0.11.0"