From 3465e434578e684f72133e21de44f5cb394e63c2 Mon Sep 17 00:00:00 2001 From: Handy-caT <37216852+Handy-caT@users.noreply.github.com> Date: Thu, 2 Oct 2025 16:27:29 +0300 Subject: [PATCH 1/2] bump --- Cargo.toml | 2 +- src/lock/mod.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 04d9d0f..ff5e8f0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ perf_measurements = ["dep:performance_measurement", "dep:performance_measurement worktable_codegen = { path = "codegen", version = "0.8.6" } eyre = "0.6.12" -derive_more = { version = "1.0.0", features = ["from", "error", "display", "into"] } +derive_more = { version = "2.0.1", features = ["from", "error", "display", "into"] } tokio = { version = "1", features = ["full"] } tracing = "0.1" rkyv = { version = "0.8.9", features = ["uuid-1"] } diff --git a/src/lock/mod.rs b/src/lock/mod.rs index a533d81..57a6e76 100644 --- a/src/lock/mod.rs +++ b/src/lock/mod.rs @@ -8,10 +8,10 @@ use std::sync::Arc; use std::sync::atomic::{AtomicBool, Ordering}; use std::task::{Context, Poll}; -use derive_more::From; use futures::task::AtomicWaker; -pub use map::LockMap; use parking_lot::Mutex; + +pub use map::LockMap; pub use row_lock::RowLock; #[derive(Debug)] From 9d0ce324e192c2583b983e2ae72910d512306a99 Mon Sep 17 00:00:00 2001 From: Handy-caT <37216852+Handy-caT@users.noreply.github.com> Date: Thu, 2 Oct 2025 16:31:29 +0300 Subject: [PATCH 2/2] bump --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ff5e8f0..95c29ea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["codegen", "examples", "performance_measurement", "performance_measur [package] name = "worktable" -version = "0.8.6" +version = "0.8.7" edition = "2024" authors = ["Handy-caT"] license = "MIT"