From 3e984d56e4e6e92e6ae31d8a09758e57f55fdaa3 Mon Sep 17 00:00:00 2001 From: Joshua Nelson Date: Tue, 19 Jan 2021 02:11:14 -0500 Subject: [PATCH] Update cached This doesn't update pico-args because 0.4 had a breaking change that's annoying to work around. --- Cargo.lock | 11 +++++++++-- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1277546..e605bc9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -82,10 +82,11 @@ checksum = "ae44d1a3d5a19df61dd0c8beb138458ac2a53a7ac09eba97d55592540004306b" [[package]] name = "cached" -version = "0.20.0" +version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c20611fb80d002056306ce7ec754bb7485caa30ac2fbe25341ef470ce3c76aa" +checksum = "5e2afe73808fbaac302e39c9754bfc3c4b4d0f99c9c240b9f4e4efc841ad1b74" dependencies = [ + "hashbrown", "once_cell", ] @@ -377,6 +378,12 @@ dependencies = [ "wasi", ] +[[package]] +name = "hashbrown" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04" + [[package]] name = "hermit-abi" version = "0.1.18" diff --git a/Cargo.toml b/Cargo.toml index a65c850..b1be980 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ cargo = ["cargo_metadata", "serde_json"] default = ["cargo"] [dependencies] -cached = { version = "0.20.0", default-features = false } +cached = { version = "0.23.0", default-features = false } cargo_metadata = { version = "0.12", optional = true } serde_json = { version = "1.0.34", optional = true } pico-args = "0.3"