bazzar/actors/cart_manager/Cargo.toml

20 lines
649 B
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "cart_manager"
version = "0.1.0"
edition = "2021"
[dependencies]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
2022-10-31 09:28:49 +01:00
bus = { path = "../../shared/bus" }
2022-05-06 11:47:18 +02:00
chrono = { version = "0.4", features = ["serde"] }
2022-10-31 09:28:49 +01:00
config = { path = "../../shared/config" }
database_manager = { path = "../database_manager" }
model = { path = "../../shared/model" }
2022-05-06 11:47:18 +02:00
pretty_env_logger = { version = "0.4", features = [] }
2022-11-01 22:09:58 +01:00
rumqttc = { version = "*" }
2022-10-31 09:28:49 +01:00
serde = { version = "1.0.137", features = ["derive"] }
thiserror = { version = "1.0.31" }
tracing = { version = "0.1.34" }
uuid = { version = "0.8", features = ["serde"] }