diff --git a/Cargo.lock b/Cargo.lock index 7fcd3e8b70..aa669309dd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,6 +55,12 @@ dependencies = [ "winapi", ] +[[package]] +name = "arcstr" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03918c3dbd7701a85c6b9887732e2921175f26c350b4563841d0958c21d57e6d" + [[package]] name = "async-stream" version = "0.3.6" @@ -1935,10 +1941,11 @@ dependencies = [ [[package]] name = "redis" -version = "0.32.7" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "014cc767fefab6a3e798ca45112bccad9c6e0e218fbd49720042716c73cfef44" +checksum = "47ba378d39b8053bffbfc2750220f5a24a06189b5129523d5db01618774e0239" dependencies = [ + "arcstr", "combine", "itoa", "num-bigint", @@ -1947,6 +1954,7 @@ dependencies = [ "sha1_smol", "socket2 0.6.0", "url", + "xxhash-rust", ] [[package]] @@ -3412,6 +3420,12 @@ version = "0.6.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ea2f10b9bb0928dfb1b42b65e1f9e36f7f54dbdf08457afefb38afcdec4fa2bb" +[[package]] +name = "xxhash-rust" +version = "0.8.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fdd20c5420375476fbd4394763288da7eb0cc0b8c11deed431a91562af7335d3" + [[package]] name = "yansi" version = "1.0.1" diff --git a/Cargo.toml b/Cargo.toml index b902020b0f..b68e41bbef 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -36,7 +36,7 @@ glob = "0.3.3" rand = "0.8.0" tempfile = "3" time = "0.1.4" -redis = "0.32.7" +redis = "1.0.0" rocket = { version = "0.5.1", features = ["json"] } rocket_dyn_templates = { version = "0.2.0", features = ["tera"] } hyper = "1.8"