bazzar/crates/event-bus-redis-plugin/Cargo.toml

21 lines
470 B
TOML
Raw Permalink Normal View History

2023-05-24 19:03:49 +02:00
[package]
2023-06-01 10:41:58 +02:00
name = "event-bus-redis"
2023-05-24 19:03:49 +02:00
version = "0.1.0"
edition = "2021"
2023-06-03 13:31:57 +02:00
[lib]
crate-type = ["cdylib"]
path = "src/lib.rs"
2023-05-24 19:03:49 +02:00
[dependencies]
2023-06-03 13:31:57 +02:00
event-bus-adapter = { workspace = true }
plugin-api = { workspace = true }
2023-05-25 15:56:15 +02:00
futures = { version = "0.3.28" }
2024-06-24 14:54:46 +02:00
futures-util = { workspace = true }
redis-async = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
2023-06-01 22:02:47 +02:00
toml = { version = "0.7.4" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }
2024-06-24 14:54:46 +02:00
async-trait = { workspace = true }