forked from valkey-io/valkey-glide
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update redis-rs to match main branch
Signed-off-by: acarbonetto <[email protected]>
- Loading branch information
1 parent
1bab56a
commit d99d27a
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule redis-rs
updated
19 files
+4 −0 | .cargo/config.toml | |
+17 −24 | .github/workflows/rust.yml | |
+10 −10 | Makefile | |
+2 −2 | redis/Cargo.toml | |
+28 −11 | redis/src/aio/connection.rs | |
+8 −1 | redis/src/aio/mod.rs | |
+2 −2 | redis/src/aio/multiplexed_connection.rs | |
+45 −12 | redis/src/client.rs | |
+10 −8 | redis/src/cluster.rs | |
+704 −0 | redis/src/cluster_async/connections_container.rs | |
+271 −190 | redis/src/cluster_async/mod.rs | |
+9 −4 | redis/src/cluster_client.rs | |
+251 −143 | redis/src/cluster_routing.rs | |
+234 −50 | redis/src/cluster_topology.rs | |
+0 −8 | redis/src/commands/mod.rs | |
+21 −0 | redis/src/connection.rs | |
+2 −2 | redis/tests/support/cluster.rs | |
+18 −11 | redis/tests/support/mock_cluster.rs | |
+142 −7 | redis/tests/test_cluster_async.rs |