bazzar/actors/account_manager/Cargo.toml
2022-10-31 09:28:49 +01:00

18 lines
573 B
TOML

[package]
name = "account_manager"
version = "0.1.0"
edition = "2021"
[dependencies]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
bus = { path = "../../shared/bus" }
config = { path = "../../shared/config" }
database_manager = { path = "../database_manager" }
fibers_rpc = { version = "0.3.4", features = [] }
model = { path = "../../shared/model" }
pretty_env_logger = { version = "0.4", features = [] }
serde = { version = "1.0.137", features = ["derive"] }
thiserror = { version = "1.0.31" }
tracing = { version = "0.1.6" }