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

21 lines
481 B
TOML
Raw 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" }
2023-06-03 13:31:57 +02:00
futures-util = { version = "0.3.28" }
redis-async = { version = "0.16.0" }
2023-05-25 15:56:15 +02:00
serde = { version = "1.0.162" }
2023-06-03 13:31:57 +02:00
thiserror = { version = "1.0.40" }
2023-06-01 22:02:47 +02:00
toml = { version = "0.7.4" }
2023-06-03 13:31:57 +02:00
tracing = { version = "0" }
async-trait = { version = "0.1.68" }