bazzar/actors/cart_manager/Cargo.toml

24 lines
634 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]
model = { path = "../../shared/model" }
config = { path = "../../shared/config" }
database_manager = { path = "../database_manager" }
2022-05-20 16:08:49 +02:00
bus = { path = "../../shared/bus" }
2022-05-06 11:47:18 +02:00
actix = { version = "0.13", features = [] }
actix-rt = { version = "2.7", features = [] }
thiserror = { version = "1.0.31" }
2022-05-20 19:47:19 +02:00
serde = { version = "1.0.137", features = ["derive"] }
2022-05-06 11:47:18 +02:00
uuid = { version = "0.8", features = ["serde"] }
chrono = { version = "0.4", features = ["serde"] }
log = { version = "0.4", features = [] }
pretty_env_logger = { version = "0.4", features = [] }