[package] name = "aurora-streams" version = "2.0.0-rc.2" edition = "2021" description = "library for managing publish-subscribe channels using Tokio message passing channels." license = "MIT" repository = "https://github.com/josh-tracey/aurora-streams" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] async-trait = "0.1.83" futures = "0.3.31" futures-util = "0.3.29" redis = { version = "0.26", features = ["tokio-comp"], optional = true } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" thiserror = "2.0.0" tokio = { version = "~1", features = ["full"] } [features] default = [] event-routing = ["redis"]