bazzar/actors/search_manager/Cargo.toml

20 lines
694 B
TOML
Raw Normal View History

2022-05-06 11:47:18 +02:00
[package]
name = "search_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-10-31 09:28:49 +01:00
config = { path = "../../shared/config" }
2022-05-06 11:47:18 +02:00
derive_more = { version = "0.99", features = [] }
2022-10-31 09:28:49 +01:00
model = { path = "../../shared/model" }
2022-05-06 11:47:18 +02:00
parking_lot = { version = "0.12", features = [] }
2022-10-31 09:28:49 +01:00
pretty_env_logger = { version = "0.4", features = [] }
2022-05-06 11:47:18 +02:00
serde = { version = "1.0", features = ["derive"] }
2022-10-31 09:28:49 +01:00
sonic-channel = { version = "1.1.0", features = ["ingest"] }
thiserror = { version = "1.0.31" }
tracing = { version = "0.1.34" }
uuid = { version = "1.2.1", features = ["serde"] }