Skip to content

Commit

Permalink
Update Redis dependency to 0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel7grant committed Feb 18, 2025
1 parent 4ffa55a commit 4274f73
Show file tree
Hide file tree
Showing 6 changed files with 122 additions and 79 deletions.
80 changes: 26 additions & 54 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ license = "MIT"
keywords = ["redis", "macro", "derive", "json"]

[dependencies]
redis = { version = "0.28", optional = true }
deadpool-redis = "0.19"
redis = { version = "0.29", optional = true }
redis-macros-derive = { version = "0.5", optional = true, path = "./redis-macros-derive" }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }
Expand All @@ -22,7 +23,6 @@ json = ["dep:redis", "dep:serde", "dep:serde_json"]
macros = ["dep:redis-macros-derive"]

[dev-dependencies]
deadpool-redis = { version = "0.18" }
redis = { version = "0.28", features = ["tokio-comp", "json"] }
redis = { version = "0.29", features = ["tokio-comp", "json"] }
serde_yaml = "0.9"
tokio = { version = "1.41", features = ["full"] }
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Updated

- Update dependencies to support Redis 0.29

## [0.5.0] - 2025-01-21

### Updated
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To install it, simply add the package `redis-macros`. This package is a helper f
```toml
[dependencies]
redis-macros = "0.5.0"
redis = { version = "0.28" }
redis = { version = "0.29" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
```
Expand Down
Loading

0 comments on commit 4274f73

Please sign in to comment.