[package] name = "eventually-redis" description = "Event Store implementation using Redis, for Eventually crate" version = "0.1.0" edition = "2018" authors = ["Danilo Cianfrone "] license = "MIT" readme = "../README.md" repository = "https://github.com/ar3s3ru/eventually-rs" categories = ["web-programming", "asynchronous"] keywords = ["redis", "eventually", "event-store", "ddd", "event-sourcing"] [dependencies] eventually-core = { version = "0.4.0", path = "../eventually-core", features = ["serde"] } eventually-util = { version = "0.4.0", path = "../eventually-util" } futures = "0.3" redis = { version = "0.17", features = ["r2d2", "tokio-rt-core"] } serde = { version = "1.0", features = ["derive"] } rmp-serde = "0.14" lazy_static = "1.4.0" async-stream = "0.3.0" thiserror = "1.0.21" anyhow = "1.0.33" serde_json = "1.0.59" [dev-dependencies] testcontainers = "0.11" tokio = { version = "0.2", features = ["sync", "macros"] }