bazzar/actors/email_manager/Cargo.toml

20 lines
669 B
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "email_manager"
version = "0.1.0"
edition = "2021"
[dependencies]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
chrono = { version = "0.4", features = ["serde"] }
2022-10-31 09:28:49 +01:00
config = { path = "../../shared/config" }
model = { path = "../../shared/model" }
2022-05-06 11:47:18 +02:00
pretty_env_logger = { version = "0.4", features = [] }
2022-10-31 09:28:49 +01:00
sendgrid = { version = "0.17", features = ["async"] }
2022-05-09 16:17:27 +02:00
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = [] }
2022-10-31 09:28:49 +01:00
thiserror = { version = "1.0.31" }
tinytemplate = { version = "1.2.1" }
tracing = { version = "0.1.34" }
uuid = { version = "0.8", features = ["serde"] }