bazzar/crates/event-bus-redis-plugin/Cargo.toml
2023-06-03 13:31:57 +02:00

21 lines
481 B
TOML

[package]
name = "event-bus-redis"
version = "0.1.0"
edition = "2021"
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
event-bus-adapter = { workspace = true }
plugin-api = { workspace = true }
futures = { version = "0.3.28" }
futures-util = { version = "0.3.28" }
redis-async = { version = "0.16.0" }
serde = { version = "1.0.162" }
thiserror = { version = "1.0.40" }
toml = { version = "0.7.4" }
tracing = { version = "0" }
async-trait = { version = "0.1.68" }