From 2ae8cffbbf23743d906b3a58eec2439666cfe5c3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Sep 2023 11:18:36 +0000 Subject: [PATCH] Bump cached from 0.42.0 to 0.46.0 Bumps [cached](https://github.com/jaemk/cached) from 0.42.0 to 0.46.0. - [Changelog](https://github.com/jaemk/cached/blob/master/CHANGELOG.md) - [Commits](https://github.com/jaemk/cached/commits) --- updated-dependencies: - dependency-name: cached dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 34 ++++++++++++++++++---------------- backend/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 18c36e4..10f3a6b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -319,6 +319,12 @@ dependencies = [ "alloc-no-stdlib", ] +[[package]] +name = "allocator-api2" +version = "0.2.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5" + [[package]] name = "anyhow" version = "1.0.70" @@ -375,12 +381,6 @@ dependencies = [ "rustc_version", ] -[[package]] -name = "async_once" -version = "0.2.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2ce4f10ea3abcd6617873bae9f91d1c5332b4a778bd9ce34d0cd517474c1de82" - [[package]] name = "atty" version = "0.2.14" @@ -642,18 +642,17 @@ dependencies = [ [[package]] name = "cached" -version = "0.42.0" +version = "0.46.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e5877db5d1af7fae60d06b5db9430b68056a69b3582a0be8e3691e87654aeb6" +checksum = "8cead8ece0da6b744b2ad8ef9c58a4cdc7ef2921e60a6ddfb9eaaa86839b5fc5" dependencies = [ + "ahash 0.8.3", "async-trait", - "async_once", "cached_proc_macro", "cached_proc_macro_types", "futures", - "hashbrown 0.13.2", + "hashbrown 0.14.0", "instant", - "lazy_static", "once_cell", "thiserror", "tokio", @@ -661,11 +660,10 @@ dependencies = [ [[package]] name = "cached_proc_macro" -version = "0.16.0" +version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e10ca87c81aaa3a949dbbe2b5e6c2c45dbc94ba4897e45ea31ff9ec5087be3dc" +checksum = "7da8245dd5f576a41c3b76247b54c15b0e43139ceeb4f732033e15be7c005176" dependencies = [ - "cached_proc_macro_types", "darling", "proc-macro2", "quote", @@ -1983,9 +1981,13 @@ checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" [[package]] name = "hashbrown" -version = "0.13.2" +version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" +checksum = "2c6201b9ff9fd90a5a3bac2e56a830d0caa509576f0e503818ee82c181b3437a" +dependencies = [ + "ahash 0.8.3", + "allocator-api2", +] [[package]] name = "hashers" diff --git a/backend/Cargo.toml b/backend/Cargo.toml index e8c61b6..b634566 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -18,7 +18,7 @@ actix-web = { version = "4.3.0", features = ["rustls"] } anyhow = "1.0.69" async-trait = "0.1.66" bincode = "1.3.3" -cached = { version = "0.42.0", features = ["async_tokio_rt_multi_thread"] } +cached = { version = "0.46.0", features = ["async_tokio_rt_multi_thread"] } chacha20poly1305 = "0.10.1" clap = { version = "3.2.15", features = ["cargo", "derive"] } colony-rs = { git = "https://github.com/JoinColony/colonyRS.git", branch = "main" }