[package] name = "account_manager" version = "0.1.0" edition = "2021" [[bin]] name = "account-manager" path = "./src/main.rs" [dependencies] actix = { version = "0.13", features = [] } actix-rt = { version = "2.7", features = [] } bincode = { version = "1.3.3" } bus = { path = "../../shared/bus" } bytes = { version = "1.2.1" } config = { path = "../../shared/config" } database_manager = { path = "../database_manager" } dotenv = { version = "0.15.0" } futures = { version = "0.3.25" } json = { version = "0.12.4" } model = { path = "../../shared/model" } pretty_env_logger = { version = "0.4", features = [] } rumqttc = { version = "*" } serde = { version = "1.0.137", features = ["derive"] } tarpc = { version = "0.30.0", features = ["tokio1"] } thiserror = { version = "1.0.31" } tokio = { version = "1.21.2", features = ['full'] } tracing = { version = "0.1.6" } tracing-subscriber = { version = "0.3.16" }