bazzar/crates/order_manager/Cargo.toml

19 lines
596 B
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "order_manager"
version = "0.1.0"
edition = "2021"
[dependencies]
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
chrono = { version = "0.4", features = ["serde"] }
2022-11-04 18:40:14 +01:00
config = { path = "../config" }
2022-10-31 09:28:49 +01:00
database_manager = { path = "../database_manager" }
2022-11-04 18:40:14 +01:00
model = { path = "../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 = "1.2.1", features = ["serde"] }