-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from JMTamayo/main
Modified the Redis dependency version constraint to be >=0.28.0,<0.29.0 instead of just >=0.28.0
- Loading branch information
Showing
3 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,7 @@ Cargo.lock | |
*.vscode | ||
|
||
# Remove .idea folder: | ||
*.idea | ||
*.idea | ||
|
||
# Remove .DS_Store file: | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "redsumer" | ||
description = "Lightweight implementation of Redis Streams for Rust" | ||
version = "0.5.3" | ||
version = "0.5.4" | ||
edition = "2021" | ||
license-file = "../LICENSE" | ||
readme = "../README.md" | ||
|
@@ -13,7 +13,7 @@ categories = ["database-implementations"] | |
authors = ["Juan Manuel Tamayo <[email protected]>"] | ||
|
||
[dependencies] | ||
redis = { version = ">=0.28.0", features = ["streams"] } | ||
redis = { version = ">=0.28.0,<0.29.0", features = ["streams"] } | ||
tracing = { version = ">=0.1.40" } | ||
|
||
[dev-dependencies] | ||
|