-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
36 lines (34 loc) · 1.13 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
[package]
name = "subvt-notification-processor"
version = "0.22.4"
edition = "2021"
rust-version = "1.67.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
a2 = "0.10"
anyhow = { workspace = true }
async-trait = "0.1"
chrono = "0.4"
fcm = "0.9.2"
futures = "0.3"
futures-util = "0.3"
itertools = { workspace = true }
job_scheduler = "1.2"
lazy_static = { workspace = true }
lettre = { version = "0.11", default-features = true, features = ["tokio1-native-tls"]}
log = { workspace = true }
once_cell = "1"
redis = { version = "0.27", features = ["tokio-comp"] }
rustc-hash = "2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
subvt-config = { path = "../subvt-config" }
subvt-metrics = { path = "../subvt-metrics" }
subvt-persistence = { path = "../subvt-persistence" }
subvt-service-common = { path = "../subvt-service-common" }
subvt-telegram-bot = { path = "../subvt-telegram-bot" }
subvt-types = { path = "../subvt-types" }
subvt-utility = { path = "../subvt-utility" }
tera = "1.20"
thiserror = { workspace = true }
tokio = { version = "1.41", features = ["full"] }