From 8b236cb74a9de59c3b9ab8b81191798f7bcf0c46 Mon Sep 17 00:00:00 2001 From: Ugur-Arikan Date: Sun, 24 Mar 2024 20:44:39 +0100 Subject: [PATCH] Using SplitVec with Concurrency Support * This branch upgrades both orx-selfref-col and orx-split-vec dependencies. Upgraded versions provide additional guarantees for concurrent programs. However, this PR does not add concurrency features to the linked list yet. * The update in the latter fixes the issue with the split vector's `prelude` imports. Fixes #24 --- Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 665efc8..00ff94c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orx-linked-list" -version = "2.2.0" +version = "2.3.0" edition = "2021" authors = ["orxfun "] description = "An efficient and recursive singly and doubly linked list implementation." @@ -10,8 +10,8 @@ keywords = ["linked", "list", "vec", "array", "pinned"] categories = ["data-structures", "rust-patterns"] [dependencies] -orx-selfref-col = "1.3" -orx-split-vec = "2.3" +orx-selfref-col = "1.4" +orx-split-vec = "2.7" [dev-dependencies] rand = "0.8"