diff --git a/Cargo.lock b/Cargo.lock index 8cd4651b4e..b5d675478a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -302,9 +302,9 @@ checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3" [[package]] name = "cacache" -version = "13.0.0" +version = "13.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a61ff12b19d89c752c213316b87fdb4a587f073d219b893cc56974b8c9f39bf7" +checksum = "5c5063741c7b2e260bbede781cf4679632dd90e2718e99f7715e46824b65670b" dependencies = [ "digest", "either", diff --git a/git-cliff-core/Cargo.toml b/git-cliff-core/Cargo.toml index a7089e59f3..81b218265b 100644 --- a/git-cliff-core/Cargo.toml +++ b/git-cliff-core/Cargo.toml @@ -78,7 +78,9 @@ async-stream = { version = "0.3.6", optional = true } url.workspace = true dyn-clone = "1.0.17" urlencoding = "2.1.3" -cacache = { version = "=13.0.0", features = ["mmap"], default-features = false } +# `tokio-runtime` is already enabled transitively by the CLI. This just avoids runtime-less build failures. +# See: https://github.com/zkat/cacache-rs/issues/92 +cacache = { version = "13.1.0", features = ["mmap", "tokio-runtime"], default-features = false } time = "0.3.44" chrono = { version = "0.4.41", features = ["serde"] }