Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
2 changes: 1 addition & 1 deletion docs/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ async-trait = "0.1"
```toml
crossbeam-queue = "0.3"
crossbeam-utils = "0.8"
lockfree = "0.5"
lock_freedom = "0.1"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Update documentation to match Cargo.toml version specification.

The documentation specifies lock_freedom = "0.1", but Cargo.toml specifies version "0.1.1". For clarity and consistency, update the documentation to reflect the exact version constraint.

-lock_freedom = "0.1"
+lock_freedom = "0.1.1"
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
lock_freedom = "0.1"
lock_freedom = "0.1.1"
🤖 Prompt for AI Agents
In docs/implementation.md around line 503, the documented dependency version is
shown as lock_freedom = "0.1" which does not match Cargo.toml's "0.1.1"; update
the documentation to use the exact version string used in Cargo.toml
(lock_freedom = "0.1.1") so the docs and manifest are consistent.

```

### SIMD & Performance
Expand Down