bazzar/actors/account_manager/Cargo.toml

22 lines
583 B
TOML
Raw Normal View History

2022-05-19 16:13:27 +02:00
[package]
name = "account_manager"
version = "0.1.0"
edition = "2021"
[dependencies]
model = { path = "../../shared/model" }
config = { path = "../../shared/config" }
database_manager = { path = "../database_manager" }
2022-05-22 14:19:11 +02:00
#token_manager = { path = "../token_manager" }
2022-05-20 16:08:49 +02:00
bus = { path = "../../shared/bus" }
2022-05-19 16:13:27 +02:00
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
thiserror = { version = "1.0.31" }
2022-05-22 14:19:11 +02:00
serde = { version = "1.0.137", features = ["derive"] }
2022-05-19 16:13:27 +02:00
log = { version = "0.4", features = [] }
pretty_env_logger = { version = "0.4", features = [] }