bazzar/actors/account_manager/Cargo.toml

23 lines
578 B
TOML

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