diff --git a/README.md b/README.md index c4e3a54..657d0ad 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,21 @@ # redsumer-rs +
+ + + + + + + + + + + + + +
+ A lightweight implementation of Redis Streams for Rust, allowing you to manage streaming messages in a simplified way. With redsumer you can: - **Produce** new messages in a specific *stream*. diff --git a/redsumer-rs/Cargo.toml b/redsumer-rs/Cargo.toml index deb61ff..ec99b22 100644 --- a/redsumer-rs/Cargo.toml +++ b/redsumer-rs/Cargo.toml @@ -20,8 +20,8 @@ authors = [ ] [dependencies] -redis = { version = "0.27.2", features = ["tokio-comp", "streams"] } -tracing = { version = "0.1.40" } +redis = { version = ">=0.27.2", features = ["tokio-comp", "streams"] } +tracing = { version = ">=0.1.40" } [dev-dependencies] redis-test = { version = "0.6.0" }