From 0532fe983b7b42b59dbf84e50a2fe5e6f7bad4ce Mon Sep 17 00:00:00 2001 From: Lachlan Deakin Date: Sat, 1 Feb 2025 11:57:40 +1100 Subject: [PATCH] chore(deps): bump `lru` to 0.13 --- CHANGELOG.md | 1 + zarrs/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32f0bc81..3875821f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -27,6 +27,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - **Breaking**: `ArrayBytes::new_vlen()` not returns a `Result` and validates bytes/offsets compatibility - Reenable broken compatibility tests since fixed in `zarr-python`/`numcodecs` - **Breaking**: move the `zarrs::array::{data_type,fill_value}` modules into the `zarrs_data_type` crate +- Bump `lru` to 0.13 ## [0.19.1] - 2025-01-19 diff --git a/zarrs/Cargo.toml b/zarrs/Cargo.toml index 5afcb988..881b5493 100644 --- a/zarrs/Cargo.toml +++ b/zarrs/Cargo.toml @@ -55,7 +55,7 @@ gdeflate-sys = { version = "0.4.1", optional = true } half = { workspace = true } inventory = "0.3.0" itertools = "0.14.0" -lru = "0.12.4" +lru = "0.13.0" moka = { version = "0.12.8", features = ["sync"] } ndarray = { version = ">=0.15.0,<17", optional = true } num = { workspace = true }