From 490df4fedc1997ef0da212cdd594f85d540b5735 Mon Sep 17 00:00:00 2001 From: orxfun Date: Thu, 22 Aug 2024 21:51:16 +0200 Subject: [PATCH] Index and IndexMut traits are required by PinnedVec --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fd60c72..4c15caf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orx-split-vec" -version = "3.4.0" +version = "3.5.0" edition = "2021" authors = ["orxfun "] description = "An efficient constant access time vector with dynamic capacity and pinned elements." @@ -11,7 +11,7 @@ categories = ["data-structures", "rust-patterns"] [dependencies] orx-pseudo-default = "1.4" -orx-pinned-vec = "3.4" +orx-pinned-vec = "3.5" [[bench]] name = "serial_access"