-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Core: Merge latest updates from amazon-contributing/redis-rs
- Loading branch information
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule redis-rs
updated
29 files
+10 −10 | Cargo.lock | |
+15 −11 | Makefile | |
+12 −12 | README.md | |
+3 −0 | redis-test/CHANGELOG.md | |
+3 −3 | redis-test/Cargo.toml | |
+49 −0 | redis/CHANGELOG.md | |
+6 −6 | redis/Cargo.toml | |
+1 −1 | redis/examples/async-multiplexed.rs | |
+5 −5 | redis/src/aio/connection_manager.rs | |
+3 −3 | redis/src/aio/mod.rs | |
+10 −9 | redis/src/aio/multiplexed_connection.rs | |
+31 −1 | redis/src/aio/runtime.rs | |
+53 −32 | redis/src/client.rs | |
+9 −10 | redis/src/cluster.rs | |
+60 −116 | redis/src/cluster_async/connections_container.rs | |
+8 −21 | redis/src/cluster_async/connections_logic.rs | |
+198 −237 | redis/src/cluster_async/mod.rs | |
+13 −15 | redis/src/cluster_client.rs | |
+3 −2 | redis/src/cluster_routing.rs | |
+3 −3 | redis/src/connection.rs | |
+146 −119 | redis/src/parser.rs | |
+183 −25 | redis/src/types.rs | |
+1 −1 | redis/tests/support/cluster.rs | |
+21 −17 | redis/tests/support/mod.rs | |
+62 −8 | redis/tests/test_async.rs | |
+2 −1 | redis/tests/test_async_async_std.rs | |
+34 −27 | redis/tests/test_basic.rs | |
+22 −13 | redis/tests/test_cluster.rs | |
+154 −26 | redis/tests/test_cluster_async.rs |