From 0c0ccb1314fed132a5fb8e448e8b8f6ae30a9e97 Mon Sep 17 00:00:00 2001 From: John Vandenberg Date: Thu, 20 Nov 2025 05:00:26 +0800 Subject: [PATCH] Replace lockfree with lock_freedom --- Cargo.toml | 2 +- docs/implementation.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5f9619c..7213e20 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -41,7 +41,7 @@ futures = { version = "0.3", optional = true } async-trait = { version = "0.1", optional = true } # Lock-free data structures -lockfree = { version = "0.5", optional = true } +lockfree = { package = "lock_freedom", version = "0.1.1", optional = true } # SIMD and vectorization packed_simd_2 = { version = "0.3", optional = true } diff --git a/docs/implementation.md b/docs/implementation.md index dbe5d79..a681558 100644 --- a/docs/implementation.md +++ b/docs/implementation.md @@ -500,7 +500,7 @@ async-trait = "0.1" ```toml crossbeam-queue = "0.3" crossbeam-utils = "0.8" -lockfree = "0.5" +lock_freedom = "0.1" ``` ### SIMD & Performance