bazzar/actors/account_manager/Cargo.toml

30 lines
915 B
TOML
Raw Normal View History

2022-05-19 16:13:27 +02:00
[package]
name = "account_manager"
version = "0.1.0"
edition = "2021"
2022-11-01 22:09:58 +01:00
[[bin]]
name = "account-manager"
path = "./src/main.rs"
2022-05-19 16:13:27 +02:00
[dependencies]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
2022-11-01 22:09:58 +01:00
bincode = { version = "1.3.3" }
2022-10-31 09:28:49 +01:00
bus = { path = "../../shared/bus" }
2022-11-01 22:09:58 +01:00
bytes = { version = "1.2.1" }
2022-10-31 09:28:49 +01:00
config = { path = "../../shared/config" }
database_manager = { path = "../database_manager" }
2022-11-01 22:09:58 +01:00
dotenv = { version = "0.15.0" }
2022-11-03 07:02:33 +01:00
futures = { version = "0.3.25" }
json = { version = "0.12.4" }
2022-10-31 09:28:49 +01:00
model = { path = "../../shared/model" }
pretty_env_logger = { version = "0.4", features = [] }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-05-22 14:19:11 +02:00
serde = { version = "1.0.137", features = ["derive"] }
2022-11-03 07:02:33 +01:00
tarpc = { version = "0.30.0", features = ["tokio1"] }
2022-10-31 09:28:49 +01:00
thiserror = { version = "1.0.31" }
2022-11-01 22:09:58 +01:00
tokio = { version = "1.21.2", features = ['full'] }
tracing = { version = "0.1.6" }
2022-11-01 22:09:58 +01:00
tracing-subscriber = { version = "0.3.16" }