From 063ff0b8380adadee71518f169cbe1e3d8517cee Mon Sep 17 00:00:00 2001 From: iferc Date: Tue, 18 Apr 2023 02:32:32 +0000 Subject: [PATCH 1/2] Update to latest version of redis dependency. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a8a64a0..d851195 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,6 +18,6 @@ path = "examples/example.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -rand = "0.8.3" -redis = "0.20.0" +rand = "0.8" +redis = "0.23" thiserror = "1.0" From 716ceedbbfe4d7ce516a476c68e95b7a91fccf3f Mon Sep 17 00:00:00 2001 From: iferc Date: Tue, 18 Apr 2023 02:43:23 +0000 Subject: [PATCH 2/2] Increment patch version. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index d851195..612f2d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "redsync" -version = "1.0.0" +version = "1.0.1" authors = ["jace-ys "] edition = "2018" description = "A Rust implementation of Redlock for distributed locks with Redis"